size optimization
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4554 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
b4143baf7f
commit
615ad474cb
1 changed files with 2 additions and 1 deletions
|
@ -500,7 +500,8 @@ void NSISCALL myRegGetStr(HKEY root, const char *sub, const char *name, char *ou
|
|||
|
||||
void NSISCALL myitoa(char *s, int d)
|
||||
{
|
||||
wsprintf(s,"%d",d);
|
||||
static const char c[] = "%d";
|
||||
wsprintf(s,c,d);
|
||||
}
|
||||
|
||||
int NSISCALL myatoi(char *s)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue