mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
x86-64 fix from Mike A. Harris.
This commit is contained in:
parent
af33733ce4
commit
6466f44ed3
1 changed files with 1 additions and 1 deletions
|
@ -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]);
|
||||
|
|
Loading…
Reference in a new issue