Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2693)

Unified Diff: chrome/browser/importer/mork_reader.cc

Issue 14238014: Fix erroneous log message in mork_reader.cc. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/importer/mork_reader.cc
diff --git a/chrome/browser/importer/mork_reader.cc b/chrome/browser/importer/mork_reader.cc
index afcd58547aac7e3280fa5be2ecd8dc57f496d1ea..7270b94b6f08476db335f581539233f374b2d3e7 100644
--- a/chrome/browser/importer/mork_reader.cc
+++ b/chrome/browser/importer/mork_reader.cc
@@ -222,7 +222,7 @@ bool MorkReader::ParseMap(const std::string& first_line,
}
case '>':
// End of the map.
- DLOG_IF(WARNING, key.empty()) <<
+ DLOG_IF(WARNING, !key.empty()) <<
"map terminates inside of key/value pair";
return true;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698