Skip to content

Commit 172f094

Browse files
committed
Build fix.
1 parent 65c5ede commit 172f094

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Sources/NodeEngine/NE_Localization.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ template<typename... Args>
4747
std::wstring FormatString (const std::wstring& format, Args... args)
4848
{
4949
wchar_t resultString[2048];
50-
swprintf_s (resultString, 2048, format.c_str (), args...);
50+
swprintf (resultString, 2048, format.c_str (), args...);
5151
return std::wstring (resultString);
5252
}
5353

0 commit comments

Comments
 (0)