From: antirez Date: Mon, 24 Jan 2011 09:05:42 +0000 (+0100) Subject: portability fix in redis benchmark, using zu format specified with size_t instead... X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/9b45592c699d6ca9445259e18839ea535495e23b?ds=inline portability fix in redis benchmark, using zu format specified with size_t instead of lu --- diff --git a/src/redis-benchmark.c b/src/redis-benchmark.c index 407c7fb4..618d9c03 100644 --- a/src/redis-benchmark.c +++ b/src/redis-benchmark.c @@ -143,7 +143,7 @@ static void randomizeClientKey(client c) { for (i = 0; i < c->randlen; i++) { r = random() % config.randomkeys_keyspacelen; - snprintf(buf,sizeof(buf),"%012lu",r); + snprintf(buf,sizeof(buf),"%012zu",r); memcpy(c->randptr[i],buf,12); } }