Index: src/global-handles.cc |
diff --git a/src/global-handles.cc b/src/global-handles.cc |
index 91c698bce7027904ea70de4a6365e4cc922e5cc7..ed9caa92a9dd412e055a63e9bfbf6c1acb03aca6 100644 |
--- a/src/global-handles.cc |
+++ b/src/global-handles.cc |
@@ -888,7 +888,7 @@ |
} |
void ObjectGroupsTracer::PrintObjectGroup(ObjectGroup* group) { |
- PrintIsolate(isolate_, "ObjectGroup (size: %" PRIuS ")\n", group->length); |
+ PrintIsolate(isolate_, "ObjectGroup (size: %lu)\n", group->length); |
Object*** objects = group->objects; |
for (size_t i = 0; i < group->length; ++i) { |
@@ -898,7 +898,7 @@ |
} |
void ObjectGroupsTracer::PrintImplicitRefGroup(ImplicitRefGroup* group) { |
- PrintIsolate(isolate_, "ImplicitRefGroup (children count: %" PRIuS ")\n", |
+ PrintIsolate(isolate_, "ImplicitRefGroup (children count: %lu)\n", |
group->length); |
PrintIsolate(isolate_, " - Parent: "); |
PrintObject(*(group->parent)); |
@@ -1223,7 +1223,8 @@ |
} |
PrintF("Global Handle Statistics:\n"); |
- PrintF(" allocated memory = %" PRIuS "B\n", total * sizeof(Node)); |
+ PrintF(" allocated memory = %" V8_SIZET_PREFIX V8_PTR_PREFIX "dB\n", |
+ total * sizeof(Node)); |
PrintF(" # weak = %d\n", weak); |
PrintF(" # pending = %d\n", pending); |
PrintF(" # near_death = %d\n", near_death); |