Commit 6c4cea95 authored by Alexandre Julliard's avatar Alexandre Julliard

taskkill: Use WINAPIV calling convention for variadic functions.

parent a31e62a2
......@@ -74,7 +74,7 @@ static int taskkill_vprintfW(const WCHAR *msg, __ms_va_list va_args)
return count;
}
static int CDECL taskkill_printfW(const WCHAR *msg, ...)
static int WINAPIV taskkill_printfW(const WCHAR *msg, ...)
{
__ms_va_list va_args;
int len;
......@@ -86,7 +86,7 @@ static int CDECL taskkill_printfW(const WCHAR *msg, ...)
return len;
}
static int CDECL taskkill_message_printfW(int msg, ...)
static int WINAPIV taskkill_message_printfW(int msg, ...)
{
__ms_va_list va_args;
WCHAR msg_buffer[8192];
......
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