Revision: 22650
Author: [email protected]
Date: Mon Jul 28 15:01:57 2014 UTC
Log: Fix printf formatting.
[email protected]
BUG=
Review URL: https://codereview.chromium.org/420273002
http://code.google.com/p/v8/source/detail?r=22650
Modified:
/branches/bleeding_edge/src/gc-tracer.cc
=======================================
--- /branches/bleeding_edge/src/gc-tracer.cc Mon Jul 28 14:48:53 2014 UTC
+++ /branches/bleeding_edge/src/gc-tracer.cc Mon Jul 28 15:01:57 2014 UTC
@@ -280,7 +280,8 @@
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.