Index: runtime/vm/allocation.cc |
=================================================================== |
--- runtime/vm/allocation.cc (revision 26375) |
+++ runtime/vm/allocation.cc (working copy) |
@@ -19,7 +19,7 @@ |
ASSERT(isolate != NULL); |
ASSERT(isolate->current_zone() != NULL); |
if (size > static_cast<uword>(kIntptrMax)) { |
- FATAL1("ZoneAllocated object has unexpectedly large size %"Pu"", size); |
+ FATAL1("ZoneAllocated object has unexpectedly large size %" Pu "", size); |
} |
return reinterpret_cast<void*>(isolate->current_zone()->AllocUnsafe(size)); |
} |