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

Unified Diff: runtime/vm/dart.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/compiler_stats.cc ('k') | runtime/vm/dart_api_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/dart.cc
diff --git a/runtime/vm/dart.cc b/runtime/vm/dart.cc
index 396128b642a5758900695463cee6884d1eb95184..a3fd87c505cb3c3789fabd0e542dc7fee46aa095 100644
--- a/runtime/vm/dart.cc
+++ b/runtime/vm/dart.cc
@@ -146,7 +146,7 @@ RawError* Dart::InitializeIsolate(const uint8_t* snapshot_buffer, void* data) {
const Snapshot* snapshot = Snapshot::SetupFromBuffer(snapshot_buffer);
ASSERT(snapshot->kind() == Snapshot::kFull);
if (FLAG_trace_isolates) {
- OS::Print("Size of isolate snapshot = %ld\n", snapshot->length());
+ OS::Print("Size of isolate snapshot = %d\n", snapshot->length());
}
SnapshotReader reader(snapshot->content(), snapshot->length(),
Snapshot::kFull, isolate);
« no previous file with comments | « runtime/vm/compiler_stats.cc ('k') | runtime/vm/dart_api_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698