Changed: Use toString instead of sprintf
This commit is contained in:
parent
d8f79ed761
commit
41ac92d9f2
2 changed files with 6 additions and 7 deletions
|
@ -715,7 +715,8 @@ public:
|
|||
{
|
||||
str = "<NoModule>";
|
||||
}
|
||||
str += toString("!0x%X", addr);
|
||||
|
||||
str += toString("!0x%p", (void*)addr);
|
||||
}
|
||||
|
||||
//
|
||||
|
@ -740,9 +741,8 @@ public:
|
|||
{
|
||||
str = "<NoModule>";
|
||||
}
|
||||
char tmp[32];
|
||||
sprintf (tmp, "!0x%p", addr);
|
||||
str += tmp;
|
||||
|
||||
str += toString("!0x%p", (void*)addr);
|
||||
//}
|
||||
str +=" DEBUG:"+toString("0x%p", addr);
|
||||
|
||||
|
|
|
@ -138,9 +138,8 @@ static string getSourceInfo (DWORD_TYPE addr)
|
|||
{
|
||||
str = "<NoModule>";
|
||||
}
|
||||
char tmp[32];
|
||||
sprintf (tmp, "!0x%X", addr);
|
||||
str += tmp;
|
||||
|
||||
str += toString("!0x%p", (void*)addr);
|
||||
}
|
||||
|
||||
return str;
|
||||
|
|
Loading…
Reference in a new issue