From: havoc Date: Tue, 24 Sep 2002 22:10:21 +0000 (+0000) Subject: fix a warning on argv X-Git-Tag: RELEASE_0_2_0_RC1~203 X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=commitdiff_plain;h=66a136af999cd76551bd56e3c3096fff0d42f613;ds=sidebyside fix a warning on argv git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@2434 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/sys_win.c b/sys_win.c index 7363e57f..acd3c161 100644 --- a/sys_win.c +++ b/sys_win.c @@ -346,7 +346,7 @@ WinMain */ HINSTANCE global_hInstance; int global_nCmdShow; -char *argv[MAX_NUM_ARGVS]; +const char *argv[MAX_NUM_ARGVS]; char program_name[MAX_OSPATH]; int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)