Changed: Use toString instead of sprintf

This commit is contained in:
kervala 2015-12-23 14:56:36 +01:00
parent d8f79ed761
commit 41ac92d9f2
2 changed files with 6 additions and 7 deletions

View file

@ -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);

View file

@ -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;