mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-02-01 03:20:41 +00:00
Silence warning about truncating the result of memcmp
git-svn-id: https://svn.eduke32.com/eduke32@7021 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
f4227dcbc1
commit
756369dc22
1 changed files with 1 additions and 1 deletions
|
@ -835,7 +835,7 @@ int initgroupfile(const char *filename)
|
|||
if (temp == 0)
|
||||
continue;
|
||||
kread_grp(numgroupfiles, buf, temp);
|
||||
temp2 |= Bmemcmp(buf, zerobuf, temp);
|
||||
temp2 |= !!Bmemcmp(buf, zerobuf, temp);
|
||||
}
|
||||
if (temp2)
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue