Module: wine Branch: master Commit: 9be401e3cb8533a5f87f107bb2942f3e7b9842c2 URL: https://source.winehq.org/git/wine.git/?a=commit;h=9be401e3cb8533a5f87f107bb...
Author: Alexandre Julliard julliard@winehq.org Date: Mon Oct 25 11:00:16 2021 +0200
attrib: Use the standard va_list instead of __ms_va_list.
Signed-off-by: Alexandre Julliard julliard@winehq.org
---
programs/attrib/attrib.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/programs/attrib/attrib.c b/programs/attrib/attrib.c index 13fedad4e34..f8257461fe2 100644 --- a/programs/attrib/attrib.c +++ b/programs/attrib/attrib.c @@ -52,7 +52,7 @@ static int WINAPIV ATTRIB_wprintf(const WCHAR *format, ...) static BOOL traceOutput = FALSE; #define MAX_WRITECONSOLE_SIZE 65535
- __ms_va_list parms; + va_list parms; DWORD nOut; int len; DWORD res = 0; @@ -70,10 +70,10 @@ static int WINAPIV ATTRIB_wprintf(const WCHAR *format, ...) return 0; }
- __ms_va_start(parms, format); + va_start(parms, format); len = FormatMessageW(FORMAT_MESSAGE_FROM_STRING, format, 0, 0, output_bufW, MAX_WRITECONSOLE_SIZE/sizeof(*output_bufW), &parms); - __ms_va_end(parms); + va_end(parms); if (len == 0 && GetLastError() != ERROR_NO_WORK_DONE) { WINE_FIXME("Could not format string: le=%u, fmt=%s\n", GetLastError(), wine_dbgstr_w(format)); return 0;