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

Unified Diff: runtime/vm/timeline.cc

Issue 1406093003: Fix build (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 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 | « no previous file | sdk/lib/developer/timeline.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/timeline.cc
diff --git a/runtime/vm/timeline.cc b/runtime/vm/timeline.cc
index 3481b45d396a2bad2c5bf97c5537b914b3f32461..62a9b2289d1adcc8412f3852776735a782fe6154 100644
--- a/runtime/vm/timeline.cc
+++ b/runtime/vm/timeline.cc
@@ -421,7 +421,8 @@ void TimelineEvent::PrintJSON(JSONStream* stream) const {
}
if (isolate_id_ != ILLEGAL_PORT) {
// If we have one, append the isolate id.
- args.AddProperty("isolateNumber", isolate_id_);
+ args.AddPropertyF("isolateNumber", "%" Pd64 "",
+ static_cast<int64_t>(isolate_id_));
}
}
}
« no previous file with comments | « no previous file | sdk/lib/developer/timeline.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698