Commit 9efe1a32 authored by Alexandre Julliard's avatar Alexandre Julliard

conhost: Use standard va_list instead of __ms_va_list.

parent ad30e4f9
......@@ -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;
......
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