We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84f3b8a commit 799cef6Copy full SHA for 799cef6
src/xrCore/log.cpp
@@ -97,7 +97,7 @@ void __cdecl Msg(const char* format, ...)
97
va_list mark;
98
string2048 buf;
99
va_start(mark, format);
100
- int sz = _vsnprintf(buf, sizeof(buf) - 1, format, mark);
+ int sz = std::vsnprintf(buf, sizeof(buf) - 1, format, mark);
101
buf[sizeof(buf) - 1] = 0;
102
va_end(mark);
103
if (sz) Log(buf);
0 commit comments