diff options
author | Tim Angus <tim@ngus.net> | 2007-03-22 00:08:00 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2007-03-22 00:08:00 +0000 |
commit | 8ca72e6747e916186415d6b4158676e411fbbb5e (patch) | |
tree | f045318637d4e00715be5875479727a8452f2219 /src/cgame/cg_main.c | |
parent | d899c25c571ed061bba9725cf7b35d492cc6e518 (diff) |
* Fixes to some GCC 4 warnings
Diffstat (limited to 'src/cgame/cg_main.c')
-rw-r--r-- | src/cgame/cg_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cgame/cg_main.c b/src/cgame/cg_main.c index 8647df8f..8d5929b5 100644 --- a/src/cgame/cg_main.c +++ b/src/cgame/cg_main.c @@ -1318,7 +1318,7 @@ void CG_LoadMenus( const char *menuFile ) len = trap_FS_FOpenFile( "ui/hud.txt", &f, FS_READ ); if( !f ) - trap_Error( va( S_COLOR_RED "default menu file not found: ui/hud.txt, unable to continue!\n", menuFile ) ); + trap_Error( va( S_COLOR_RED "default menu file not found: ui/hud.txt, unable to continue!\n" ) ); } if( len >= MAX_MENUDEFFILE ) |