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

Unified Diff: chrome/browser/media/chrome_webrtc_audio_quality_browsertest.cc

Issue 1088763003: Fix printf format specifier when printing FilePath (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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/media/chrome_webrtc_audio_quality_browsertest.cc
diff --git a/chrome/browser/media/chrome_webrtc_audio_quality_browsertest.cc b/chrome/browser/media/chrome_webrtc_audio_quality_browsertest.cc
index ba1c762b3d22487c6fd37ddf5ba1d62e3ab07c6e..41b733eae763fe1650d36b96b7b0a78827e4a084 100644
--- a/chrome/browser/media/chrome_webrtc_audio_quality_browsertest.cc
+++ b/chrome/browser/media/chrome_webrtc_audio_quality_browsertest.cc
@@ -482,7 +482,7 @@ base::FilePath CreateTemporaryWaveFile() {
void DeleteFileUnlessTestFailed(const base::FilePath& path, bool recursive) {
if (::testing::Test::HasFailure())
- printf("Test failed; keeping recording(s) at\n\t%s.\n",
+ printf("Test failed; keeping recording(s) at\n\t%" PRFilePath ".\n",
path.value().c_str());
else
EXPECT_TRUE(base::DeleteFile(path, recursive));
« 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