| Index: runtime/vm/object.cc
|
| diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
|
| index 4a17aa201e5809bf77bdf1dabae09ed3d7a63c74..13b84c64387f0b86d970b534c259ad4b7ffc2e1a 100644
|
| --- a/runtime/vm/object.cc
|
| +++ b/runtime/vm/object.cc
|
| @@ -7139,11 +7139,10 @@ bool Function::CheckSourceFingerprint(const char* prefix, int32_t fp) const {
|
| // This output can be copied into a file, then used with sed
|
| // to replace the old values.
|
| // sed -i .bak -f /tmp/newkeys runtime/vm/method_recognizer.h
|
| - THR_Print("s/V(%s, %d)/V(%s, %d)/\n",
|
| - prefix, fp, prefix, SourceFingerprint());
|
| + THR_Print("s/0x%08x/0x%08x/\n", fp, SourceFingerprint());
|
| } else {
|
| THR_Print("FP mismatch while recognizing method %s:"
|
| - " expecting %d found %d\n",
|
| + " expecting 0x%08x found 0x%08x\n",
|
| ToFullyQualifiedCString(),
|
| fp,
|
| SourceFingerprint());
|
|
|