mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-13 02:39:34 +00:00
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 = "<NoModule>";
|
||||||
}
|
}
|
||||||
str += toString("!0x%X", addr);
|
|
||||||
|
str += toString("!0x%p", (void*)addr);
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
@ -740,9 +741,8 @@ public:
|
||||||
{
|
{
|
||||||
str = "<NoModule>";
|
str = "<NoModule>";
|
||||||
}
|
}
|
||||||
char tmp[32];
|
|
||||||
sprintf (tmp, "!0x%p", addr);
|
str += toString("!0x%p", (void*)addr);
|
||||||
str += tmp;
|
|
||||||
//}
|
//}
|
||||||
str +=" DEBUG:"+toString("0x%p", addr);
|
str +=" DEBUG:"+toString("0x%p", addr);
|
||||||
|
|
||||||
|
|
|
@ -138,9 +138,8 @@ static string getSourceInfo (DWORD_TYPE addr)
|
||||||
{
|
{
|
||||||
str = "<NoModule>";
|
str = "<NoModule>";
|
||||||
}
|
}
|
||||||
char tmp[32];
|
|
||||||
sprintf (tmp, "!0x%X", addr);
|
str += toString("!0x%p", (void*)addr);
|
||||||
str += tmp;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return str;
|
return str;
|
||||||
|
|
Loading…
Reference in a new issue