fix garbage in win98 crash output (win2k handles "%08p"; win98 does not)

This commit is contained in:
Glenn Maynard
2004-04-05 05:34:38 +00:00
parent 20a8bab45c
commit 161e6da184
+1 -1
View File
@@ -714,7 +714,7 @@ void SymLookup( const void *ptr, char *buf )
char tmp[512];
if( VDDebugInfoLookupRVA(&g_debugInfo, (unsigned int)ptr, tmp, sizeof(tmp)) >= 0 )
{
wsprintf( buf, "%08p: %s", ptr, Demangle(tmp) );
wsprintf( buf, "%08x: %s", ptr, Demangle(tmp) );
return;
}