| Index: src/profiler/allocation-tracker.cc
|
| diff --git a/src/profiler/allocation-tracker.cc b/src/profiler/allocation-tracker.cc
|
| index a910dc178056488fc70fe9466244a19454d674a6..5572ed58380ae8a41441f7864c33ed75688fa711 100644
|
| --- a/src/profiler/allocation-tracker.cc
|
| +++ b/src/profiler/allocation-tracker.cc
|
| @@ -149,7 +149,8 @@
|
|
|
|
|
| void AddressToTraceMap::Print() {
|
| - PrintF("[AddressToTraceMap (%" PRIuS "): \n", ranges_.size());
|
| + PrintF("[AddressToTraceMap (%" V8_SIZET_PREFIX V8PRIuPTR "): \n",
|
| + ranges_.size());
|
| for (RangeMap::iterator it = ranges_.begin(); it != ranges_.end(); ++it) {
|
| PrintF("[%p - %p] => %u\n", it->second.start, it->first,
|
| it->second.trace_node_id);
|
|
|