| Index: base/files/file_posix.cc
|
| diff --git a/base/files/file_posix.cc b/base/files/file_posix.cc
|
| index 2bd9cd0b08ff4dbab95676166a6c3e18f5680f04..028a38276d6fedd3954ff4f2a9df68086418021e 100644
|
| --- a/base/files/file_posix.cc
|
| +++ b/base/files/file_posix.cc
|
| @@ -221,7 +221,7 @@ FILE* FdopenPlatformFile(PlatformFile file, const char* mode) {
|
|
|
| bool ClosePlatformFile(PlatformFile file) {
|
| base::ThreadRestrictions::AssertIOAllowed();
|
| - return !HANDLE_EINTR(close(file));
|
| + return !IGNORE_EINTR(close(file));
|
| }
|
|
|
| int64 SeekPlatformFile(PlatformFile file,
|
|
|