[bot] Match logprintf(...)

This commit is contained in:
RD42 2024-06-02 22:16:11 +08:00
parent ed70116c80
commit 2d0918379d

View File

@ -57,7 +57,7 @@ void logprintf(char* format, ...)
va_list ap;
va_start(ap, format);
char buffer[2048];
char buffer[2049];
vsprintf(buffer, format, ap);
#ifdef WIN32