engine: various const qualifier fixes

This commit is contained in:
Alibek Omarov
2022-05-29 04:22:43 +03:00
parent 5fb4edeb36
commit 6f36edfd16
5 changed files with 16 additions and 16 deletions

View File

@@ -229,7 +229,7 @@ void BaseCmd_Stats_f( void )
Con_Printf( "Empty buckets: %d\n", empty );
}
static void BaseCmd_CheckCvars( const char *key, const char *value, void *buffer, void *ptr )
static void BaseCmd_CheckCvars( const char *key, const char *value, const void *unused, void *ptr )
{
base_command_t *v = BaseCmd_Find( HM_CVAR, key );
qboolean *invalid = ptr;