Module: wine Branch: master Commit: d244f902b36760c85eef50b322f62167d0e6925a URL: https://gitlab.winehq.org/wine/wine/-/commit/d244f902b36760c85eef50b322f6216...
Author: Alexandre Julliard julliard@winehq.org Date: Mon Feb 20 08:39:42 2023 +0100
oleview: Use standard va_list instead of __ms_va_list.
---
programs/oleview/typelib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/programs/oleview/typelib.c b/programs/oleview/typelib.c index 19f902a0659..ce420b0404a 100644 --- a/programs/oleview/typelib.c +++ b/programs/oleview/typelib.c @@ -1116,7 +1116,7 @@ static int PopulateTree(void) args[0] = (DWORD_PTR)typelib.wszFileName; args[1] = hRes; FormatMessageW(FORMAT_MESSAGE_FROM_STRING|FORMAT_MESSAGE_ARGUMENT_ARRAY, - wszError, 0, 0, wszMessage, ARRAY_SIZE(wszMessage), (__ms_va_list*)args); + wszError, 0, 0, wszMessage, ARRAY_SIZE(wszMessage), (va_list *)args); MessageBoxW(globals.hMainWnd, wszMessage, NULL, MB_OK|MB_ICONEXCLAMATION); return 1; }