xcopy: Use WINAPIV calling convention for variadic functions.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Alexandre Julliard 2017-11-02 10:22:27 +01:00
parent 7c555f5c90
commit 9aa298ba69
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ static WCHAR *XCOPY_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 XCOPY_wprintf(const WCHAR *format, ...) {
static int WINAPIV XCOPY_wprintf(const WCHAR *format, ...) {
static WCHAR *output_bufW = NULL;
static char *output_bufA = NULL;