]> git.saurik.com Git - redis.git/blobdiff - zipmap.c
support dual encoding in LTRIM
[redis.git] / zipmap.c
index 6fd6ca86d960a714ac704d75f249e7edac9dd960..35faeabefa78434046e9cc6d922389255ec6d04d 100644 (file)
--- a/zipmap.c
+++ b/zipmap.c
@@ -176,7 +176,6 @@ static unsigned long zipmapRequiredLength(unsigned int klen, unsigned int vlen)
 /* Return the total amount used by a key (encoded length + payload) */
 static unsigned int zipmapRawKeyLength(unsigned char *p) {
     unsigned int l = zipmapDecodeLength(p);
-    
     return zipmapEncodeLength(NULL,l) + l;
 }