Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1182)

Unified Diff: runtime/vm/zone.cc

Issue 10869063: Add attributions so printf like functions can have their arguments checked. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: rebased Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/zone.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/zone.cc
diff --git a/runtime/vm/zone.cc b/runtime/vm/zone.cc
index 79dcbf05f091a45ffa9e0b094826c6e56256b56f..88ee0c06e2cbc3b29978bd4e4f0e4766f6a4cf7a 100644
--- a/runtime/vm/zone.cc
+++ b/runtime/vm/zone.cc
@@ -198,7 +198,7 @@ void BaseZone::DumpZoneSizes() {
for (Segment* s = large_segments_; s != NULL; s = s->next()) {
size += s->size();
}
- OS::Print("Size in bytes allocated, Total = %d Large Segments = %d\n",
+ OS::Print("Size in bytes allocated, Total = %"Pd" Large Segments = %"Pd"\n",
SizeInBytes(), size);
}
#endif
« no previous file with comments | « runtime/vm/zone.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698