| Index: sandbox/linux/services/broker_process_unittest.cc
|
| diff --git a/sandbox/linux/services/broker_process_unittest.cc b/sandbox/linux/services/broker_process_unittest.cc
|
| index 4cb9c6fb92845ea710635fe56856b3f1b89f8733..f163ef997188bdcfa53b67ffc218545f4c93a0e9 100644
|
| --- a/sandbox/linux/services/broker_process_unittest.cc
|
| +++ b/sandbox/linux/services/broker_process_unittest.cc
|
| @@ -48,7 +48,7 @@ class ScopedTemporaryFile {
|
| }
|
| ~ScopedTemporaryFile() {
|
| CHECK_EQ(0, unlink(full_file_name_));
|
| - CHECK_EQ(0, HANDLE_EINTR(close(fd_)));
|
| + CHECK_EQ(0, IGNORE_EINTR(close(fd_)));
|
| }
|
|
|
| int fd() const { return fd_; }
|
|
|