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}
This commit is contained in:
rossberg 2015-08-04 08:50:36 -07:00 committed by Commit bot
parent c11ab6f7e5
commit 1813f80d73

View File

@ -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<void*>(params_[i]));
else
PrintName(name);
}