Format string correction.
git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2586 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
@@ -84,7 +84,7 @@ crc_processBytes(crc_State *state, uint8 *buf, size_t bufLen) {
|
|||||||
newCrc = (newCrc >> 8) ^ crcTable[(newCrc ^ *buf) & 0xff];
|
newCrc = (newCrc >> 8) ^ crcTable[(newCrc ^ *buf) & 0xff];
|
||||||
|
|
||||||
#ifdef DUMP_CRC_OPS
|
#ifdef DUMP_CRC_OPS
|
||||||
log_add(log_Debug, "crc_processBytes(%08x, [%z bytes]) --> %08x.",
|
log_add(log_Debug, "crc_processBytes(%08x, [%zu bytes]) --> %08x.",
|
||||||
state->crc, bufLen, newCrc);
|
state->crc, bufLen, newCrc);
|
||||||
#endif
|
#endif
|
||||||
state->crc = newCrc;
|
state->crc = newCrc;
|
||||||
|
|||||||
Reference in New Issue
Block a user