Chromium Code Reviews| Index: src/scopes.cc |
| diff --git a/src/scopes.cc b/src/scopes.cc |
| index 02400493873773a35b87e68cffd820eebe329cd6..4c997d04e0bb49ceb6c425278b2457c5a1aded83 100644 |
| --- a/src/scopes.cc |
| +++ b/src/scopes.cc |
| @@ -863,7 +863,7 @@ static void PrintVar(int indent, Variable* var) { |
| Indent(indent, Variable::Mode2String(var->mode())); |
| PrintF(" "); |
| if (var->raw_name()->IsEmpty()) |
| - PrintF(".%p", var); |
| + PrintF(".%p", reinterpret_cast<void*>(var)); |
| else |
| PrintName(var->raw_name()); |
| PrintF("; // "); |