Hopefully fixed Molgrum's void* error

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2561 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2007-08-03 14:16:15 +00:00
parent fb234dac8a
commit 7352cb0974
1 changed files with 1 additions and 1 deletions

View File

@ -486,7 +486,7 @@ qboolean NQNetchan_Process(cluster_t *cluster, netchan_t *chan, netmsg_t *msg)
return false;
}
memcpy(chan->in_fragment_buf + chan->in_fragment_length, msg->data+8, msg->cursize-8);
memcpy(chan->in_fragment_buf + chan->in_fragment_length, (char*)msg->data+8, msg->cursize-8);
chan->in_fragment_length += msg->cursize-8;
if (header & NETFLAG_EOM)