iOS: Compile fix
authorMartin Fleisz <mfleisz@thinstuff.com>
Wed, 13 Mar 2013 14:12:44 +0000 (15:12 +0100)
committerMartin Fleisz <mfleisz@thinstuff.com>
Wed, 13 Mar 2013 14:12:44 +0000 (15:12 +0100)
winpr/libwinpr/utils/print.c

index 73f913b..e3991cd 100644 (file)
@@ -411,7 +411,7 @@ int wsprintfx(char *buf, const char *fmt, ...)
        if (!buf)
                status = do_printf(fmt, args, discard, NULL);
        else
-               status = vsprintf(buf, fmt, args);
+               status = wvsprintfx(buf, fmt, args);
 
        va_end(args);