netstat: Use WINAPIV calling convention for variadic functions.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2017-11-02 10:21:15 +01:00
parent 399feae786
commit 83d6249c41
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ static const WCHAR tcpstatesW[][16] = {
* 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
* ========================================================================= */
static int __cdecl NETSTAT_wprintf(const WCHAR *format, ...)
static int WINAPIV NETSTAT_wprintf(const WCHAR *format, ...)
{
static WCHAR *output_bufW = NULL;
static char *output_bufA = NULL;