Add static_cast<void*> to pointer arg for %p in format string, to to fix GCC warning. No Bug #, r=jorendorff

This commit is contained in:
Daniel Holbert 2011-08-11 15:19:56 -07:00
Родитель 523de06a96
Коммит 38b8e5cc37
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -726,7 +726,8 @@ class CallCompiler : public BaseCompiler
JSC::CodeLocationLabel(jit->fastEntry));
JaegerSpew(JSpew_PICs, "patched CALL path %p (obj: %p)\n",
ic.funGuard.executableAddress(), ic.fastGuardedObject);
ic.funGuard.executableAddress(),
static_cast<void*>(ic.fastGuardedObject));
return true;
}