Fixed Linux build.

This commit is contained in:
bkaradzic
2013-05-21 20:09:23 -07:00
parent 0a76693183
commit 4188c83c7f

View File

@@ -192,7 +192,7 @@ namespace bx
int32_t len = ::_vsnwprintf_s(_str, _count*sizeof(wchar_t), _count, _format, _argList);
return -1 == len ? ::_vscwprintf(_format, _argList) : len;
#else
return ::vsnwprintf(_str, _count, _format, _argList);
return ::vswprintf(_str, _count, _format, _argList);
#endif // BX_COMPILER_MSVC
}