From 38e2c8d496c7299e0ff68a30ae0cb457b417e18e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Sun, 2 Jul 2017 22:55:03 -0700 Subject: [PATCH] Cleanup. --- src/string.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/string.cpp b/src/string.cpp index 26bb014..cb72453 100644 --- a/src/string.cpp +++ b/src/string.cpp @@ -871,7 +871,7 @@ namespace bx va_copy(argList, _argList); int32_t total = 0; #if BX_CRT_NONE - BX_UNUSED(_out, _max, _format, _argList); + BX_UNUSED(_out, _max, _format, argList); #elif BX_CRT_MSVC int32_t len = -1; if (NULL != _out) @@ -883,9 +883,9 @@ namespace bx } total = -1 == len ? ::_vscwprintf(_format, _argList) : len; #elif BX_CRT_MINGW - total = ::vsnwprintf(_out, _max, _format, _argList); + total = ::vsnwprintf(_out, _max, _format, argList); #else - total = ::vswprintf(_out, _max, _format, _argList); + total = ::vswprintf(_out, _max, _format, argList); #endif // BX_COMPILER_MSVC va_end(argList); return total;