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

Unified Diff: runtime/vm/flags.cc

Issue 909253002: Fix a windows build issue (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 10 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/disassembler_arm64.cc ('k') | runtime/vm/simulator_arm64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/flags.cc
===================================================================
--- runtime/vm/flags.cc (revision 43665)
+++ runtime/vm/flags.cc (working copy)
@@ -55,7 +55,7 @@
break;
}
case kUint64: {
- OS::Print("%s: %"Pu64" (%s)\n", name_, *this->uint64_ptr_, comment_);
+ OS::Print("%s: %" Pu64 " (%s)\n", name_, *this->uint64_ptr_, comment_);
break;
}
case kString: {
@@ -441,7 +441,7 @@
}
case Flag::kUint64: {
jsflag.AddProperty("flagType", "uint64_t");
- jsflag.AddPropertyF("valueAsString", "%"Pu64, *flag->uint64_ptr_);
+ jsflag.AddPropertyF("valueAsString", "%" Pu64, *flag->uint64_ptr_);
break;
}
case Flag::kString: {
« no previous file with comments | « runtime/vm/disassembler_arm64.cc ('k') | runtime/vm/simulator_arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698