From 9355921c41b9bd1f78e322a2ed9d6ef3df23f82a Mon Sep 17 00:00:00 2001 From: kichik Date: Wed, 28 Aug 2002 14:58:32 +0000 Subject: [PATCH] Space saving git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@772 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/exehead/util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/exehead/util.c b/Source/exehead/util.c index 057b2113..6fc67735 100644 --- a/Source/exehead/util.c +++ b/Source/exehead/util.c @@ -464,7 +464,7 @@ void NSISCALL process_string(char *out, const char *in) switch (nVarIdx) // The order of this list must match that in ..\strlist.cpp (err, build.cpp -J) { case VAR_CODES_START + 0: // HWNDPARENT - wsprintf(out, "%u", (unsigned int)g_hwnd); + myitoa(out, (unsigned int)g_hwnd); break; case VAR_CODES_START + 1: // 0 case VAR_CODES_START + 2: // 1 @@ -494,7 +494,7 @@ void NSISCALL process_string(char *out, const char *in) break; case VAR_CODES_START + 25: // LANGUAGE - wsprintf(out, "%u", cur_common_strings_table->lang_id); + myitoa(out, cur_common_strings_table->lang_id); break; case VAR_CODES_START + 26: // PROGRAMFILES