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

Unified Diff: runtime/vm/object.cc

Issue 10918123: Fix format used to write information into /tmp/perf-<pid>.map. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 | « 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/object.cc
diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
index 95e574534f7493649b1c743f0a813644f0f53742..486e564a02551444aeb0930e83f02067b0ac591f 100644
--- a/runtime/vm/object.cc
+++ b/runtime/vm/object.cc
@@ -7401,7 +7401,7 @@ RawCode* Code::FinalizeCode(const char* name, Assembler* assembler) {
assembler->FinalizeInstructions(region);
Dart_FileWriterFunction perf_events_writer = Dart::perf_events_writer();
if (perf_events_writer != NULL) {
- const char* format = "%#"Px" %#"Px" %s\n";
+ const char* format = "%"Px" %"Px" %s\n";
uword addr = instrs.EntryPoint();
uword size = instrs.size();
intptr_t len = OS::SNPrint(NULL, 0, format, addr, size, name);
« 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