]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
fixed unterminated character constant in my last fix
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Fri, 10 Sep 2004 18:20:06 +0000 (18:20 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Fri, 10 Sep 2004 18:20:06 +0000 (18:20 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@4466 d7cf8633-e32d-0410-b094-e92efae38249

sys_win.c

index a2be13cc89920c0e9a884ef6545d1d0972e30622..8dd8299838890579dca1ba5d13e0f2fc99053def 100644 (file)
--- 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++;
                        }