Chromium Code Reviews| Index: util/file/file_io_win.cc |
| diff --git a/util/file/file_io_win.cc b/util/file/file_io_win.cc |
| index 10805439f6a616806bb5fb29bdc4cb9e95c2bdc3..def2a5a2bf8d5592e3cda1ad5b5cce12c4d09d90 100644 |
| --- a/util/file/file_io_win.cc |
| +++ b/util/file/file_io_win.cc |
| @@ -233,7 +233,7 @@ bool LoggingTruncateFile(FileHandle file) { |
| bool LoggingCloseFile(FileHandle file) { |
| BOOL rv = CloseHandle(file); |
| PLOG_IF(ERROR, !rv) << "CloseHandle"; |
| - return rv; |
| + return !!rv; |
| } |
| } // namespace crashpad |