summaryrefslogtreecommitdiffstats
path: root/content/shell
diff options
context:
space:
mode:
authorjochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-11 21:53:44 +0000
committerjochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-11 21:53:44 +0000
commitf11d79c7c2f4a7665e5c4b839feacd9534d44ea2 (patch)
tree1b726c8e2fe52807ab3a3cbac932dcb768d67369 /content/shell
parent95af087dc056a84e8047eb1e8c195f99119f9de3 (diff)
downloadchromium_src-f11d79c7c2f4a7665e5c4b839feacd9534d44ea2.zip
chromium_src-f11d79c7c2f4a7665e5c4b839feacd9534d44ea2.tar.gz
chromium_src-f11d79c7c2f4a7665e5c4b839feacd9534d44ea2.tar.bz2
[content shell] remove spurious printf format
BUG=111316 TEST=pixel tests that pass actually pass Review URL: https://codereview.chromium.org/11085091 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@161416 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/shell')
-rw-r--r--content/shell/webkit_test_runner_host.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/content/shell/webkit_test_runner_host.cc b/content/shell/webkit_test_runner_host.cc
index 88b2f12..03ca79e 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(