| Index: base/file_util.h
|
| ===================================================================
|
| --- base/file_util.h (revision 50000)
|
| +++ base/file_util.h (working copy)
|
| @@ -35,7 +35,6 @@
|
| #if defined(OS_POSIX)
|
| #include "base/eintr_wrapper.h"
|
| #include "base/file_descriptor_posix.h"
|
| -#include "base/logging.h"
|
| #endif
|
|
|
| namespace base {
|
| @@ -378,8 +377,7 @@
|
| public:
|
| inline void operator()(int* x) const {
|
| if (x && *x >= 0) {
|
| - if (HANDLE_EINTR(close(*x)) < 0)
|
| - PLOG(ERROR) << "close";
|
| + HANDLE_EINTR(close(*x));
|
| }
|
| }
|
| };
|
|
|