Alexandre Julliard : icinfo: Use the standard va_list instead of __ms_va_list.
Module: wine Branch: master Commit: bac8aff2934c4dd7a360d604643bde81cc3a97bd URL: https://source.winehq.org/git/wine.git/?a=commit;h=bac8aff2934c4dd7a360d6046... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Mon Oct 25 11:01:02 2021 +0200 icinfo: Use the standard va_list instead of __ms_va_list. Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- programs/icinfo/icinfo.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/programs/icinfo/icinfo.c b/programs/icinfo/icinfo.c index 25b847b5a36..01ddbfb6833 100644 --- a/programs/icinfo/icinfo.c +++ b/programs/icinfo/icinfo.c @@ -26,14 +26,14 @@ static int WINAPIV mywprintf(const WCHAR *format, ...) { static char output_bufA[65536]; static WCHAR output_bufW[sizeof(output_bufA)]; - __ms_va_list parms; + va_list parms; DWORD nOut; BOOL res = FALSE; HANDLE hout = GetStdHandle(STD_OUTPUT_HANDLE); - __ms_va_start(parms, format); + va_start(parms, format); vswprintf(output_bufW, ARRAY_SIZE(output_bufW), format, parms); - __ms_va_end(parms); + va_end(parms); /* Try to write as unicode whenever we think it's a console */ if (((DWORD_PTR)hout & 3) == 3)
participants (1)
-
Alexandre Julliard