From 338b8c8025e3b1adf804820131d6e27d0cf06bb9 Mon Sep 17 00:00:00 2001 From: havoc Date: Fri, 10 Sep 2004 18:20:06 +0000 Subject: [PATCH] fixed unterminated character constant in my last fix git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@4466 d7cf8633-e32d-0410-b094-e92efae38249 --- sys_win.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys_win.c b/sys_win.c index a2be13cc..8dd82998 100644 --- a/sys_win.c +++ b/sys_win.c @@ -372,7 +372,7 @@ int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLin // unquoted word argv[com_argc] = lpCmdLine; com_argc++; - while (*lpCmdLine && *lpCmdLine > ' ) + while (*lpCmdLine && *lpCmdLine > ' ') lpCmdLine++; } -- 2.39.2