| Index: runtime/vm/object.cc
|
| diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
|
| index 1e1407a67771ffb9b80c47197b8f0161cff54d5f..81c98f0e22700ff4837b74aa26278bdaa4d1cadc 100644
|
| --- a/runtime/vm/object.cc
|
| +++ b/runtime/vm/object.cc
|
| @@ -7154,7 +7154,7 @@ uword Code::GetDeoptAfterPcAtDeoptId(intptr_t deopt_id) const {
|
|
|
|
|
| const char* Code::ToCString() const {
|
| - const char* kFormat = "Code entry:0x%d";
|
| + const char* kFormat = "Code entry:%p";
|
| intptr_t len = OS::SNPrint(NULL, 0, kFormat, EntryPoint()) + 1;
|
| char* chars = Isolate::Current()->current_zone()->Alloc<char>(len);
|
| OS::SNPrint(chars, len, kFormat, EntryPoint());
|
|
|