Index: src/ast/prettyprinter.cc |
diff --git a/src/ast/prettyprinter.cc b/src/ast/prettyprinter.cc |
index 49bff08e14c2b7de29e32cefebd18859e1bc3684..2f9aa2353e802114fe1418d4a74a082c8607ef86 100644 |
--- a/src/ast/prettyprinter.cc |
+++ b/src/ast/prettyprinter.cc |
@@ -1092,7 +1092,7 @@ void PrettyPrinter::PrintLiteral(Handle<Object> value, bool quote) { |
} else if (object->IsFixedArray()) { |
Print("FixedArray"); |
} else { |
- Print("<unknown literal %p>", object); |
+ Print("<unknown literal %p>", static_cast<void*>(object)); |
} |
} |