| Index: src/profiler/allocation-tracker.cc
|
| diff --git a/src/profiler/allocation-tracker.cc b/src/profiler/allocation-tracker.cc
|
| index 8055dd263ed6a4910094311a4597570ad75a4038..791cdf03f0e9ca789bb09acce85d64308d651cc2 100644
|
| --- a/src/profiler/allocation-tracker.cc
|
| +++ b/src/profiler/allocation-tracker.cc
|
| @@ -149,7 +149,8 @@ void AddressToTraceMap::Clear() {
|
|
|
|
|
| void AddressToTraceMap::Print() {
|
| - PrintF("[AddressToTraceMap (%" V8PRIuPTR "): \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);
|
|
|