From 9d0d8c49e7e05b5885d57a0f5846881c57d84e0d Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sat, 23 Feb 2002 17:43:41 +0000 Subject: [PATCH] win32 compile fix --- libs/util/sys.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/util/sys.c b/libs/util/sys.c index d9507232f..c6ecb0ea2 100644 --- a/libs/util/sys.c +++ b/libs/util/sys.c @@ -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 */