| Index: chromeos/process_proxy/process_output_watcher.cc
|
| diff --git a/chromeos/process_proxy/process_output_watcher.cc b/chromeos/process_proxy/process_output_watcher.cc
|
| index 40ed8cf63579e179422fd8a04c257c08d016241a..f0639846424f6b10225d5a698830f9491f36a036 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;
|
|
|