From 717145c1a3302f4a20746dce8c885ee590e0f0e2 Mon Sep 17 00:00:00 2001 From: antirez Date: Tue, 24 Apr 2012 17:15:21 +0200 Subject: [PATCH] Spurious debugging printf removed. --- src/ziplist.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ziplist.c b/src/ziplist.c index 420f1304..e3741f81 100644 --- a/src/ziplist.c +++ b/src/ziplist.c @@ -346,7 +346,6 @@ static int64_t zipLoadInteger(unsigned char *p, unsigned char encoding) { int16_t i16; int32_t i32; int64_t i64, ret = 0; - printf("%02x\n", encoding); if (encoding == ZIP_INT_8B) { ret = ((char*)p)[0]; } else if (encoding == ZIP_INT_16B) { -- 2.47.2