Module: wine Branch: master Commit: 3b6b24ea424c5f499c58f7de06e83a8c035b6ccd URL: https://source.winehq.org/git/wine.git/?a=commit;h=3b6b24ea424c5f499c58f7de0...
Author: Alexandre Julliard julliard@winehq.org Date: Mon Oct 25 11:01:22 2021 +0200
netstat: Use the standard va_list instead of __ms_va_list.
Signed-off-by: Alexandre Julliard julliard@winehq.org
---
programs/netstat/netstat.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/programs/netstat/netstat.c b/programs/netstat/netstat.c index 563896629c9..243fca56055 100644 --- a/programs/netstat/netstat.c +++ b/programs/netstat/netstat.c @@ -78,7 +78,7 @@ static int WINAPIV NETSTAT_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; @@ -96,9 +96,9 @@ static int WINAPIV NETSTAT_wprintf(const WCHAR *format, ...) return 0; }
- __ms_va_start(parms, format); + va_start(parms, format); len = wvsprintfW(output_bufW, format, parms); - __ms_va_end(parms); + va_end(parms);
/* Try to write as unicode all the time we think it's a console */ if (toConsole) {