Index: runtime/vm/object.cc |
diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc |
index 6098fd97e6bc16564b4d669f142a8d49cfa06000..d2f3a499143ca7a949a0cbaa43b89384da360770 100644 |
--- a/runtime/vm/object.cc |
+++ b/runtime/vm/object.cc |
@@ -13878,13 +13878,13 @@ const char* Context::ToCString() const { |
Zone* zone = Thread::Current()->zone(); |
const Context& parent_ctx = Context::Handle(parent()); |
if (parent_ctx.IsNull()) { |
- return zone->PrintToString("Context@%p num_variables:% " Pd "", |
- this->raw(), num_variables()); |
+ return zone->PrintToString("Context num_variables: %" Pd "", |
+ num_variables()); |
} else { |
const char* parent_str = parent_ctx.ToCString(); |
return zone->PrintToString( |
- "Context@%p num_variables:% " Pd " parent:{ %s }", |
- this->raw(), num_variables(), parent_str); |
+ "Context num_variables: %" Pd " parent:{ %s }", |
+ num_variables(), parent_str); |
} |
} |