Commit 297f7cb3 authored by Alexandre Julliard's avatar Alexandre Julliard

winefile: Use standard va_list instead of __ms_va_list.

parent dbfeb4b7
......@@ -2405,8 +2405,7 @@ static void set_space_status(void)
args[1] = (DWORD_PTR)StrFormatByteSizeW(ulTotalBytes.QuadPart, b2, ARRAY_SIZE(b2));
FormatMessageW(FORMAT_MESSAGE_FROM_STRING|FORMAT_MESSAGE_ARGUMENT_ARRAY,
RS(fmt,IDS_FREE_SPACE_FMT), 0, 0, buffer, ARRAY_SIZE(buffer),
(__ms_va_list*)args);
RS(fmt,IDS_FREE_SPACE_FMT), 0, 0, buffer, ARRAY_SIZE(buffer), (va_list *)args);
} else
lstrcpyW(buffer, sQMarks);
......
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