Index: remoting/host/ipc_util_posix.cc |
diff --git a/remoting/host/ipc_util_posix.cc b/remoting/host/ipc_util_posix.cc |
index 55f215dd6c57d4a114fd5bb5e770c33546fe85e0..d7c6a5d894988d47e98faf4c3dc8a3366ac46920 100644 |
--- a/remoting/host/ipc_util_posix.cc |
+++ b/remoting/host/ipc_util_posix.cc |
@@ -33,9 +33,9 @@ bool CreateConnectedIpcChannel( |
if (fcntl(pipe_fds[0], F_SETFL, O_NONBLOCK) == -1 || |
fcntl(pipe_fds[1], F_SETFL, O_NONBLOCK) == -1) { |
PLOG(ERROR) << "fcntl(O_NONBLOCK)"; |
- if (HANDLE_EINTR(close(pipe_fds[0])) < 0) |
+ if (IGNORE_EINTR(close(pipe_fds[0])) < 0) |
PLOG(ERROR) << "close()"; |
- if (HANDLE_EINTR(close(pipe_fds[1])) < 0) |
+ if (IGNORE_EINTR(close(pipe_fds[1])) < 0) |
PLOG(ERROR) << "close()"; |
return false; |
} |