diff options
Diffstat (limited to 'chrome/common/logging_chrome.cc')
-rw-r--r-- | chrome/common/logging_chrome.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/common/logging_chrome.cc b/chrome/common/logging_chrome.cc index 6af2128..c8580be 100644 --- a/chrome/common/logging_chrome.cc +++ b/chrome/common/logging_chrome.cc @@ -206,7 +206,7 @@ size_t GetFatalAssertions(AssertionList* assertions) { std::string utf8_line; std::wstring wide_line; - while(!log_file.eof()) { + while (!log_file.eof()) { getline(log_file, utf8_line); if (utf8_line.find(":FATAL:") != std::string::npos) { wide_line = UTF8ToWide(utf8_line); |