diff options
author | Elliott Hughes <enh@google.com> | 2015-05-15 16:20:07 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2015-05-15 16:20:07 -0700 |
commit | 4e8ef698d0d76be3f8d75de32701e6e6327c1fbd (patch) | |
tree | c63f1d264df409ae6e57059fc9cd8deb4e4e0377 /libc/stdio/stdio.c | |
parent | 0378d8f65126b2d94c731f2719a68773e370f615 (diff) |
Don't use TEMP_FAILURE_RETRY on close in bionic.
Bug: http://b/20501816
Change-Id: Id64b5109cc2b165fa0351b6edbb865a5e5058008
Diffstat (limited to 'libc/stdio/stdio.c')
-rw-r--r-- | libc/stdio/stdio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/stdio/stdio.c b/libc/stdio/stdio.c index 13b98877d..fc2115e9b 100644 --- a/libc/stdio/stdio.c +++ b/libc/stdio/stdio.c @@ -86,5 +86,5 @@ __sseek(void *cookie, fpos_t offset, int whence) int __sclose(void *cookie) { - return TEMP_FAILURE_RETRY(close(((FILE *)cookie)->_file)); + return close(((FILE *)cookie)->_file); } |