mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:54:13 +00:00
conhost: Use standard va_list instead of __ms_va_list.
This commit is contained in:
parent
ad30e4f9ba
commit
9efe1a32a2
1 changed files with 1 additions and 1 deletions
|
@ -1549,7 +1549,7 @@ static BOOL select_font( struct dialog_info *di )
|
||||||
args[0] = di->config.cell_width;
|
args[0] = di->config.cell_width;
|
||||||
args[1] = di->config.cell_height;
|
args[1] = di->config.cell_height;
|
||||||
FormatMessageW( FORMAT_MESSAGE_FROM_STRING|FORMAT_MESSAGE_ARGUMENT_ARRAY,
|
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 );
|
SendDlgItemMessageW( di->dialog, IDC_FNT_FONT_INFO, WM_SETTEXT, 0, (LPARAM)buf );
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
|
Loading…
Reference in a new issue