Fixing a gcc warning
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@598 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
de4463b5c3
commit
f7834e9c24
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ void Skin_Find (player_info_t *sc)
|
|||
model_t *model;
|
||||
|
||||
mn = Info_ValueForKey (sc->userinfo, "model");
|
||||
while(s = strchr(mn, '/'))
|
||||
while((s = strchr(mn, '/')))
|
||||
*mn = '\0';
|
||||
|
||||
if (allskins[0])
|
||||
|
|
Loading…
Reference in a new issue