| Index: ipc/file_descriptor_set_posix_unittest.cc
|
| diff --git a/ipc/file_descriptor_set_posix_unittest.cc b/ipc/file_descriptor_set_posix_unittest.cc
|
| index b4a01414a551513bb06b3e4bdaf85cc8b83622e0..d9107f9f881ce67324b53fbd6653a5a9437abb94 100644
|
| --- a/ipc/file_descriptor_set_posix_unittest.cc
|
| +++ b/ipc/file_descriptor_set_posix_unittest.cc
|
| @@ -24,8 +24,8 @@ int GetSafeFd() {
|
| bool VerifyClosed(int fd) {
|
| const int duped = dup(fd);
|
| if (duped != -1) {
|
| - EXPECT_NE(HANDLE_EINTR(close(duped)), -1);
|
| - EXPECT_NE(HANDLE_EINTR(close(fd)), -1);
|
| + EXPECT_NE(IGNORE_EINTR(close(duped)), -1);
|
| + EXPECT_NE(IGNORE_EINTR(close(fd)), -1);
|
| return false;
|
| }
|
| return true;
|
|
|