fix warning

This commit is contained in:
Glenn Maynard
2005-05-28 21:55:47 +00:00
parent 720ba40a94
commit 46bd5e4c65
3 changed files with 3 additions and 3 deletions
@@ -83,7 +83,7 @@ CString BacktraceNames::Format() const
ShortenedPath = CString("(") + ShortenedPath + ")";
}
CString ret = ssprintf( "%0*lx: ", int(sizeof(void*)*2), Address );
CString ret = ssprintf( "%0*lx: ", int(sizeof(void*)*2), (long) Address );
if( Symbol != "" )
ret += Symbol + " ";
ret += ShortenedPath;