Commit 83d6249c authored by Alexandre Julliard's avatar Alexandre Julliard

netstat: Use WINAPIV calling convention for variadic functions.

parent 399feae7
...@@ -70,7 +70,7 @@ static const WCHAR tcpstatesW[][16] = { ...@@ -70,7 +70,7 @@ static const WCHAR tcpstatesW[][16] = {
* and hence required WriteConsoleW to output it, however if file i/o is * and hence required WriteConsoleW to output it, however if file i/o is
* redirected, it needs to be WriteFile'd using OEM (not ANSI) format * redirected, it needs to be WriteFile'd using OEM (not ANSI) format
* ========================================================================= */ * ========================================================================= */
static int __cdecl NETSTAT_wprintf(const WCHAR *format, ...) static int WINAPIV NETSTAT_wprintf(const WCHAR *format, ...)
{ {
static WCHAR *output_bufW = NULL; static WCHAR *output_bufW = NULL;
static char *output_bufA = NULL; static char *output_bufA = NULL;
......
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