Index: ipc/ipc_channel_posix_unittest.cc |
diff --git a/ipc/ipc_channel_posix_unittest.cc b/ipc/ipc_channel_posix_unittest.cc |
index 66ddeb2b49676444245ceab4e185a0dd84e926b8..eca78f16aef1ef3cad888824a9558180929d839b 100644 |
--- a/ipc/ipc_channel_posix_unittest.cc |
+++ b/ipc/ipc_channel_posix_unittest.cc |
@@ -219,7 +219,7 @@ TEST_F(IPCChannelPosixTest, BasicConnected) { |
ASSERT_TRUE(channel.Connect()); |
ASSERT_FALSE(channel.AcceptsConnections()); |
channel.Close(); |
- ASSERT_TRUE(HANDLE_EINTR(close(pipe_fds[1])) == 0); |
+ ASSERT_TRUE(IGNORE_EINTR(close(pipe_fds[1])) == 0); |
// Make sure that we can use the socket that is created for us by |
// a standard channel. |