Index: src/objects.cc |
diff --git a/src/objects.cc b/src/objects.cc |
index dfcb29b6027aafbdfab53181fecb10d5f52b542c..6f8f8589ce90fbd67a8505fe2dbec3977da4fb7a 100644 |
--- a/src/objects.cc |
+++ b/src/objects.cc |
@@ -1306,7 +1306,7 @@ void JSObject::JSObjectShortPrint(StringStream* accumulator) { |
accumulator->Add("<JS Function"); |
} |
accumulator->Add(" (SharedFunctionInfo %p)", |
- reinterpret_cast<intptr_t>(function->shared())); |
+ reinterpret_cast<void*>(function->shared())); |
accumulator->Put('>'); |
break; |
} |