Skip to content

Commit aa932aa

Browse files
committed
fix compiler error
1 parent 9f09db6 commit aa932aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

emmy_core/emmy_facade.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ void EmmyFacade::SendLog(LogType type, const char *fmt, ...) {
369369
va_list args;
370370
va_start(args, fmt);
371371
char buff[1024] = { 0 };
372-
vsnprintf_s(buff, 1024, fmt, args);
372+
vsnprintf(buff, 1024, fmt, args);
373373
va_end(args);
374374

375375
const std::string msg = buff;

0 commit comments

Comments
 (0)