copypaste

This commit is contained in:
Nikolay Korolev 2020-06-21 13:51:20 +03:00
parent f5cba0ce89
commit 0ab4496423
1 changed files with 1 additions and 1 deletions

View File

@ -1350,7 +1350,7 @@ static void PrintToLog(const char* format, ...)
#ifdef _WIN32
vsprintf_s(tmp, 1024, format, va);
#else
vsprintf(re3_buff, format, va);
vsprintf(tmp, format, va);
#endif
va_end(va);