mirror of
https://github.com/nzp-team/fteqw.git
synced 2025-01-20 07:20:50 +00:00
Subtracting pointers of different types isn't valid C. Boo.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3064 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
dee0c9d6cf
commit
b7a5f90f8a
1 changed files with 1 additions and 1 deletions
|
@ -2258,7 +2258,7 @@ qboolean FTENET_IRCConnect_GetPacket(ftenet_generic_connection_t *gcon)
|
|||
}
|
||||
if (*s == '$')
|
||||
{
|
||||
char *nstart = s;
|
||||
unsigned char *nstart = s;
|
||||
while (*s != '\r' && *s != '\n' && *s != '#' && *s != ' ' && *s != ':')
|
||||
s++;
|
||||
if (*s == '#')
|
||||
|
|
Loading…
Reference in a new issue