win32 compile fix

This commit is contained in:
Bill Currie 2002-02-23 17:43:41 +00:00
parent f3944a8eda
commit 9d0d8c49e7
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@ Sys_Print (FILE *stream, const char *fmt, va_list args)
#ifdef WIN32
if (stream == stderr)
MessageBox (NULL, string, "Error", 0 /* MB_OK */ );
MessageBox (NULL, msg, "Error", 0 /* MB_OK */ );
#endif
/* translate to ASCII instead of printing [xx] --KB */