Index: ipc/ipc_channel_factory.cc |
diff --git a/ipc/ipc_channel_factory.cc b/ipc/ipc_channel_factory.cc |
index f3ad11a6b4f35540b3d4cc6de8b278d99b3d97f3..5c24284f95dd3e64010cacbd9774e0d2707aa131 100644 |
--- a/ipc/ipc_channel_factory.cc |
+++ b/ipc/ipc_channel_factory.cc |
@@ -76,7 +76,7 @@ void ChannelFactory::OnFileCanWriteWithoutBlocking(int fd) { |
void ChannelFactory::Close() { |
if (listen_fd_ < 0) |
return; |
- if (HANDLE_EINTR(close(listen_fd_)) < 0) |
+ if (IGNORE_EINTR(close(listen_fd_)) < 0) |
PLOG(ERROR) << "close"; |
listen_fd_ = -1; |
if (unlink(path_.value().c_str()) < 0) |