From 6a8033ff7b540f21233b35dd28340142c2953b81 Mon Sep 17 00:00:00 2001 From: uid95433 Date: Fri, 8 Dec 2006 02:52:04 +0000 Subject: [PATCH] Format string correction. git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2586 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/sc2code/netplay/crc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sc2/src/sc2code/netplay/crc.c b/sc2/src/sc2code/netplay/crc.c index f13628fc9..84a5ae424 100644 --- a/sc2/src/sc2code/netplay/crc.c +++ b/sc2/src/sc2code/netplay/crc.c @@ -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;