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

Unified Diff: skia/ext/image_operations_bench.cc

Issue 20182002: Make inttypes.h and similar macro usage C++11-friendly. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: line Created 7 years, 5 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
Index: skia/ext/image_operations_bench.cc
diff --git a/skia/ext/image_operations_bench.cc b/skia/ext/image_operations_bench.cc
index b433615ffff6800f3f91dcb7b537e7475036aa51..11263f3d78897e10bbbaef790f6d1adeb7211247 100644
--- a/skia/ext/image_operations_bench.cc
+++ b/skia/ext/image_operations_bench.cc
@@ -249,7 +249,7 @@ bool Benchmark::Run() const {
const uint64 num_bytes = static_cast<uint64>(num_iterations_) *
(GetBitmapSize(&source) + GetBitmapSize(&dest));
- printf("%"PRIu64" MB/s,\telapsed = %"PRIu64" source=%d dest=%d\n",
+ printf("%" PRIu64 " MB/s,\telapsed = %" PRIu64 " source=%d dest=%d\n",
static_cast<uint64>(elapsed_us == 0 ? 0 : num_bytes / elapsed_us),
static_cast<uint64>(elapsed_us),
GetBitmapSize(&source), GetBitmapSize(&dest));
« no previous file with comments | « ppapi/native_client/src/trusted/weak_ref/call_on_main_thread.h ('k') | third_party/leveldatabase/chromium_logger.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698