mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 22:51:57 +00:00
fixes a gcc warning
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@592 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
82f40721e3
commit
a4aa668a7b
1 changed files with 1 additions and 1 deletions
|
@ -692,7 +692,7 @@ void CL_Record_f (void)
|
|||
}
|
||||
}
|
||||
|
||||
while(p = strstr(fname, ".."))
|
||||
while((p = strstr(fname, "..")))
|
||||
{
|
||||
p[0] = '_';
|
||||
p[1] = '_';
|
||||
|
|
Loading…
Reference in a new issue