diff options
author | antirez <antirez@gmail.com> | 2012-04-24 17:15:21 +0200 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2012-04-24 17:15:21 +0200 |
commit | 7dbc514de7ee0ccffde321469a16b0a5c64a635c (patch) | |
tree | 5210801209dc3e09f70134c2045e2e73a812fae3 /src/ziplist.c | |
parent | a76b9063d0b858fd2c72a92794b4c852005cac30 (diff) | |
download | redis-7dbc514de7ee0ccffde321469a16b0a5c64a635c.tar.gz |
Spurious debugging printf removed.
Diffstat (limited to 'src/ziplist.c')
-rw-r--r-- | src/ziplist.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/ziplist.c b/src/ziplist.c index 420f13042..e3741f81e 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) { |