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

Unified Diff: runtime/vm/thread.cc

Issue 2573483004: Fixed build issue introduced with last commit. (Closed)
Patch Set: Updated format string to reflect actual type. Created 4 years 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/thread.cc
diff --git a/runtime/vm/thread.cc b/runtime/vm/thread.cc
index c91500be28d31e3e72ff043ba8e76a5a33fb4f88..765ed26213dbaa22efa19cea31c7f4e60decbc10 100644
--- a/runtime/vm/thread.cc
+++ b/runtime/vm/thread.cc
@@ -211,8 +211,8 @@ void Thread::InitVMConstants() {
void Thread::PrintJSON(JSONStream* stream) const {
JSONObject jsobj(stream);
jsobj.AddProperty("type", "_Thread");
- jsobj.AddPropertyF("id", "threads/%" Pd64 "",
- ThreadIdToIntPtr(os_thread()->trace_id()));
+ jsobj.AddPropertyF("id", "threads/%" Pd "",
+ OSThread::ThreadIdToIntPtr(os_thread()->trace_id()));
Zone* zone = zone_;
{
JSONArray zone_info_array(&jsobj, "zones");
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698