mirror of
https://github.com/FWGS/xash3d-fwgs
synced 2024-11-24 18:59:50 +01:00
engine: common: con_utils: fix const qualifier discard in Con_CheckName
This commit is contained in:
parent
e664e80b27
commit
da5ec56567
@ -1041,7 +1041,7 @@ compare first argument with string
|
||||
*/
|
||||
static qboolean Cmd_CheckName( const char *name )
|
||||
{
|
||||
char *p = Cmd_Argv( 0 );
|
||||
const char *p = Cmd_Argv( 0 );
|
||||
|
||||
if( !Q_stricmp( p, name ))
|
||||
return true;
|
||||
|
Loading…
Reference in New Issue
Block a user