Commit 9aa298ba authored by Alexandre Julliard's avatar Alexandre Julliard

xcopy: Use WINAPIV calling convention for variadic functions.

parent 7c555f5c
......@@ -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;
......
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