Module: wine Branch: master Commit: 9efe1a32a2fd6327b9c150b0da51326c0d084041 URL: https://gitlab.winehq.org/wine/wine/-/commit/9efe1a32a2fd6327b9c150b0da51326...
Author: Alexandre Julliard julliard@winehq.org Date: Mon Feb 20 08:39:18 2023 +0100
conhost: Use standard va_list instead of __ms_va_list.
---
programs/conhost/window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/programs/conhost/window.c b/programs/conhost/window.c index 63bf532fd73..0d6036f07d7 100644 --- a/programs/conhost/window.c +++ b/programs/conhost/window.c @@ -1549,7 +1549,7 @@ static BOOL select_font( struct dialog_info *di ) args[0] = di->config.cell_width; args[1] = di->config.cell_height; FormatMessageW( FORMAT_MESSAGE_FROM_STRING|FORMAT_MESSAGE_ARGUMENT_ARRAY, - fmt, 0, 0, buf, ARRAY_SIZE(buf), (__ms_va_list*)args ); + fmt, 0, 0, buf, ARRAY_SIZE(buf), (va_list *)args );
SendDlgItemMessageW( di->dialog, IDC_FNT_FONT_INFO, WM_SETTEXT, 0, (LPARAM)buf ); return TRUE;