x86-64 fix from Mike A. Harris.

This commit is contained in:
Ragnvald Maartmann-Moe IV 2003-02-12 23:56:29 +00:00
parent af33733ce4
commit 6466f44ed3
1 changed files with 1 additions and 1 deletions

View File

@ -264,7 +264,7 @@ AnalysePacket (void)
size = net_message->message->cursize;
for (p = data; (rsize = min (size - (p - data), 16)); p += rsize) {
Con_Printf ("%04X:", p - data);
Con_Printf ("%04X:", (unsigned int) (p - data));
memcpy (buf, p, rsize);
for (i = 0; i < rsize; i++) {
Con_Printf (" %02X", buf[i]);