Reviewers: Hannes Payer,

Message:
Committed patchset #1 manually as r22650 (tree was closed).

Description:
Fix printf formatting.

[email protected]
BUG=

Committed: https://code.google.com/p/v8/source/detail?r=22650

Please review this at https://codereview.chromium.org/420273002/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files (+2, -1 lines):
  M src/gc-tracer.cc


Index: src/gc-tracer.cc
diff --git a/src/gc-tracer.cc b/src/gc-tracer.cc
index 1f7ecd4914e02bfe597c5d8bf40e95e1f86fc04b..74a2aa873f1cb635ad6a2401c01cc4640db7f1c0 100644
--- a/src/gc-tracer.cc
+++ b/src/gc-tracer.cc
@@ -280,7 +280,8 @@ void GCTracer::PrintNVP() const {
     PrintF("steps_count=%d ", current_.incremental_marking_steps);
     PrintF("steps_took=%.1f ", current_.incremental_marking_duration);
PrintF("longest_step=%.1f ", current_.longest_incremental_marking_step);
-    PrintF("marking_throughput=%d\n", MarkingSpeedInBytesPerMillisecond());
+    PrintF("marking_throughput=%" V8_PTR_PREFIX "d ",
+           MarkingSpeedInBytesPerMillisecond());
   }

   PrintF("\n");


--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to