First diff from Andreas Schneider:

here are gcc4 signedness fixes for latest svn :)
This commit is contained in:
Zachary Slater 2005-08-31 18:00:00 +00:00
parent 23d08fae65
commit 06c73f5e59
7 changed files with 16 additions and 11 deletions

View file

@ -506,7 +506,7 @@ void SV_ConnectionlessPacket( netadr_t from, msg_t *msg ) {
MSG_BeginReadingOOB( msg );
MSG_ReadLong( msg ); // skip the -1 marker
if (!Q_strncmp("connect", &msg->data[4], 7)) {
if (!Q_strncmp("connect", (char *) &msg->data[4], 7)) {
Huff_Decompress(msg, 12);
}