diff options
Diffstat (limited to 'chromium/base/posix/file_descriptor_shuffle.cc')
-rw-r--r-- | chromium/base/posix/file_descriptor_shuffle.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chromium/base/posix/file_descriptor_shuffle.cc b/chromium/base/posix/file_descriptor_shuffle.cc index b5b7339bdfa..7bc9e26eb58 100644 --- a/chromium/base/posix/file_descriptor_shuffle.cc +++ b/chromium/base/posix/file_descriptor_shuffle.cc @@ -89,7 +89,7 @@ bool FileDescriptorTableInjection::Move(int src, int dest) { } void FileDescriptorTableInjection::Close(int fd) { - int ret = HANDLE_EINTR(close(fd)); + int ret = IGNORE_EINTR(close(fd)); DPCHECK(ret == 0); } |