diff options
Diffstat (limited to 'chromeos/process_proxy/process_output_watcher.cc')
-rw-r--r-- | chromeos/process_proxy/process_output_watcher.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chromeos/process_proxy/process_output_watcher.cc b/chromeos/process_proxy/process_output_watcher.cc index 40ed8cf..f063984 100644 --- a/chromeos/process_proxy/process_output_watcher.cc +++ b/chromeos/process_proxy/process_output_watcher.cc @@ -26,7 +26,7 @@ void InitReadFdSet(int out_fd, int stop_fd, fd_set* set) { void CloseFd(int* fd) { if (*fd >= 0) { - if (HANDLE_EINTR(close(*fd)) != 0) + if (IGNORE_EINTR(close(*fd)) != 0) DPLOG(WARNING) << "close fd " << *fd << " failed."; } *fd = -1; |