mirror of
https://github.com/bkaradzic/bx.git
synced 2026-02-17 20:52:37 +01:00
Fixed Linux build.
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user