Commit 4bfab33c authored by ernstm@chromium.org's avatar ernstm@chromium.org

Fix printf formatting.

TBR=hpayer@chromium.org
BUG=

Review URL: https://codereview.chromium.org/420273002

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@22650 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 1a0e61d4
......@@ -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");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment