uninstaller: Use WINAPIV calling convention for variadic functions.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Alexandre Julliard 2017-11-02 10:22:17 +01:00
parent 6c4cea952f
commit 7c555f5c90
1 changed files with 2 additions and 2 deletions

View File

@ -97,7 +97,7 @@ static void output_formatstring(const WCHAR *fmt, __ms_va_list va_args)
LocalFree(str); LocalFree(str);
} }
static void __cdecl output_message(unsigned int id, ...) static void WINAPIV output_message(unsigned int id, ...)
{ {
WCHAR fmt[1024]; WCHAR fmt[1024];
__ms_va_list va_args; __ms_va_list va_args;
@ -112,7 +112,7 @@ static void __cdecl output_message(unsigned int id, ...)
__ms_va_end(va_args); __ms_va_end(va_args);
} }
static void __cdecl output_array(WCHAR *fmt, ...) static void WINAPIV output_array(WCHAR *fmt, ...)
{ {
__ms_va_list va_args; __ms_va_list va_args;