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:
uid95433
2006-12-08 02:52:04 +00:00
parent a41ca58f2a
commit 6a8033ff7b
+1 -1
View File
@@ -84,7 +84,7 @@ crc_processBytes(crc_State *state, uint8 *buf, size_t bufLen) {
newCrc = (newCrc >> 8) ^ crcTable[(newCrc ^ *buf) & 0xff];
#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);
#endif
state->crc = newCrc;