Commit d39a23c5 authored by Alexandre Julliard's avatar Alexandre Julliard

fsutil: Use the standard va_list instead of __ms_va_list.

parent f0fcb195
...@@ -51,12 +51,12 @@ static void output_write(const WCHAR *str, DWORD wlen) ...@@ -51,12 +51,12 @@ static void output_write(const WCHAR *str, DWORD wlen)
static int WINAPIV output_string(int msg, ...) static int WINAPIV output_string(int msg, ...)
{ {
WCHAR out[8192]; WCHAR out[8192];
__ms_va_list arguments; va_list arguments;
int len; int len;
__ms_va_start(arguments, msg); va_start(arguments, msg);
len = FormatMessageW(FORMAT_MESSAGE_FROM_HMODULE, NULL, msg, 0, out, ARRAY_SIZE(out), &arguments); len = FormatMessageW(FORMAT_MESSAGE_FROM_HMODULE, NULL, msg, 0, out, ARRAY_SIZE(out), &arguments);
__ms_va_end(arguments); va_end(arguments);
if (len == 0 && GetLastError() != NO_ERROR) if (len == 0 && GetLastError() != NO_ERROR)
WINE_FIXME("Could not format string: le=%u, msg=%d\n", GetLastError(), msg); WINE_FIXME("Could not format string: le=%u, msg=%d\n", GetLastError(), msg);
......
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