- fixed some GCC warnings

This commit is contained in:
Christoph Oelckers 2022-05-19 09:43:10 +02:00
commit da30b6f6f0
5 changed files with 22 additions and 28 deletions

View file

@ -1040,7 +1040,7 @@ void I_NetMessage(const char* text, ...)
va_list argptr;
va_start(argptr, text);
str.VFormat(format, argptr);
str.VFormat(text, argptr);
va_end(argptr);
fprintf(stderr, "\r%-40s\n", str.GetChars());
#endif