From: havoc Date: Fri, 10 Sep 2004 18:20:06 +0000 (+0000) Subject: fixed unterminated character constant in my last fix X-Git-Tag: xonotic-v0.1.0preview~5626 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=338b8c8025e3b1adf804820131d6e27d0cf06bb9;p=xonotic%2Fdarkplaces.git fixed unterminated character constant in my last fix git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@4466 d7cf8633-e32d-0410-b094-e92efae38249 --- 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++; }