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:
Spoike 2004-12-09 23:36:54 +00:00
parent de4463b5c3
commit f7834e9c24
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ void Skin_Find (player_info_t *sc)
model_t *model; model_t *model;
mn = Info_ValueForKey (sc->userinfo, "model"); mn = Info_ValueForKey (sc->userinfo, "model");
while(s = strchr(mn, '/')) while((s = strchr(mn, '/')))
*mn = '\0'; *mn = '\0';
if (allskins[0]) if (allskins[0])