From 1813f80d732c303ce8ed96a8ea2c5fda0a7c7f6a Mon Sep 17 00:00:00 2001 From: rossberg Date: Tue, 4 Aug 2015 08:50:36 -0700 Subject: [PATCH] Fix another instance of the previous build issue TBR=yangguo@chromium.org BUG= Review URL: https://codereview.chromium.org/1264233005 Cr-Commit-Position: refs/heads/master@{#30006} --- src/scopes.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scopes.cc b/src/scopes.cc index 4c997d0..319aca5 100644 --- a/src/scopes.cc +++ b/src/scopes.cc @@ -913,7 +913,7 @@ void Scope::Print(int n) { if (i > 0) PrintF(", "); const AstRawString* name = params_[i]->raw_name(); if (name->IsEmpty()) - PrintF(".%p", params_[i]); + PrintF(".%p", reinterpret_cast(params_[i])); else PrintName(name); } -- 2.7.4