Skip to content

Commit

Permalink
Temporarily fix CL_CompleteCallvote warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ensiform committed Apr 16, 2024
1 parent fa765de commit a6274fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/client/cl_cgame.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ static void CL_Callvote_f( void ) {
}


static void CL_CompleteCallvote( const char *args, int argNum ) {
static void CL_CompleteCallvote( char *args, int argNum ) {
if( argNum >= 2 )
{
const char *p;
char *p;
if ( argNum == 3 && !Q_stricmp( Cmd_Argv( 1 ), "map" ) ) {
if ( cl_connectedToPureServer ) {
Field_CompleteFilename( "maps", "bsp", qtrue, FS_MATCH_PK3s | FS_MATCH_STICK );
Expand Down

0 comments on commit a6274fc

Please sign in to comment.