Fixed a warning.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1332 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
33069f4c2e
commit
a18be7b9e0
1 changed files with 1 additions and 1 deletions
|
@ -990,7 +990,7 @@ long Q3G_SystemCallsEx(void *offset, unsigned int mask, int fn, const long *arg)
|
||||||
int length = VM_LONG(arg[1]);
|
int length = VM_LONG(arg[1]);
|
||||||
Q_strncpyz(dest, svs.info, length);
|
Q_strncpyz(dest, svs.info, length);
|
||||||
}
|
}
|
||||||
return ;
|
return true;
|
||||||
case G_GET_USERINFO://int num, char *buffer, int bufferSize 20
|
case G_GET_USERINFO://int num, char *buffer, int bufferSize 20
|
||||||
if (VM_OOB(arg[1], arg[2]))
|
if (VM_OOB(arg[1], arg[2]))
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in a new issue