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

Unified Diff: content/shell/webkit_test_runner_host.cc

Issue 11085091: [content shell] remove spurious printf format (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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: content/shell/webkit_test_runner_host.cc
diff --git a/content/shell/webkit_test_runner_host.cc b/content/shell/webkit_test_runner_host.cc
index 88b2f124d25f9db4820d714bcc46c8ce7398d512..03ca79e013da3ad17a0a965e3dd93bfb91a20646 100644
--- a/content/shell/webkit_test_runner_host.cc
+++ b/content/shell/webkit_test_runner_host.cc
@@ -67,9 +67,9 @@ void WebKitTestResultPrinter::PrintImageHeader(
const std::string& expected_hash) {
if (state_ != IN_IMAGE_BLOCK || capture_text_only_)
return;
- *output_ << "\nActualHash: " << actual_hash << "%s\n";
+ *output_ << "\nActualHash: " << actual_hash << "\n";
if (!expected_hash.empty())
- *output_ << "\nExpectedHash: " << expected_hash << "%s\n";
+ *output_ << "\nExpectedHash: " << expected_hash << "\n";
}
void WebKitTestResultPrinter::PrintImageBlock(
« 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