Commit 7c555f5c authored by Alexandre Julliard's avatar Alexandre Julliard

uninstaller: Use WINAPIV calling convention for variadic functions.

parent 6c4cea95
......@@ -97,7 +97,7 @@ static void output_formatstring(const WCHAR *fmt, __ms_va_list va_args)
LocalFree(str);
}
static void __cdecl output_message(unsigned int id, ...)
static void WINAPIV output_message(unsigned int id, ...)
{
WCHAR fmt[1024];
__ms_va_list va_args;
......@@ -112,7 +112,7 @@ static void __cdecl output_message(unsigned int id, ...)
__ms_va_end(va_args);
}
static void __cdecl output_array(WCHAR *fmt, ...)
static void WINAPIV output_array(WCHAR *fmt, ...)
{
__ms_va_list va_args;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment