commit | 997abb668b9248c2174c6cf169a0b7c6a02fd2cb | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Fri May 15 17:05:40 2015 -0700 |
committer | Elliott Hughes <enh@google.com> | Fri May 15 17:05:40 2015 -0700 |
tree | 22a20d411ac16f4829e225ddf1cd60fef7a5ad73 | |
parent | 9188b4bb5d44c219face5a4c1c681700cc838294 [diff] [blame] |
Don't use TEMP_FAILURE_RETRY on close in frameworks/native. Bug: http://b/20501816 Change-Id: Id13a62f02243c6c4831e2f47944dc34fa822f5b6
diff --git a/cmds/dumpstate/utils.c b/cmds/dumpstate/utils.c index 4fc23aa..44ba025 100644 --- a/cmds/dumpstate/utils.c +++ b/cmds/dumpstate/utils.c
@@ -306,7 +306,7 @@ } } } - TEMP_FAILURE_RETRY(close(fd)); + close(fd); if (!newline) printf("\n"); if (title) printf("\n");