Module: wine Branch: master Commit: 297f7cb37e937ddeb3b50a999af27dc3ac484fe6 URL: https://gitlab.winehq.org/wine/wine/-/commit/297f7cb37e937ddeb3b50a999af27dc...
Author: Alexandre Julliard julliard@winehq.org Date: Mon Feb 20 08:40:27 2023 +0100
winefile: Use standard va_list instead of __ms_va_list.
---
programs/winefile/winefile.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/programs/winefile/winefile.c b/programs/winefile/winefile.c index 8ad785b924a..6d18954e05a 100644 --- a/programs/winefile/winefile.c +++ b/programs/winefile/winefile.c @@ -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);