fix garbage in win98 crash output (win2k handles "%08p"; win98 does not)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user