attrib: 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:20:40 +01:00
parent 667b150a98
commit 1722db40e5
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ static WCHAR *ATTRIB_LoadMessage(UINT id)
* 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 ATTRIB_wprintf(const WCHAR *format, ...)
static int WINAPIV ATTRIB_wprintf(const WCHAR *format, ...)
{
static WCHAR *output_bufW = NULL;
static char *output_bufA = NULL;