From 8c6700720d7794bf9d526b6e2adbf73cc12207f0 Mon Sep 17 00:00:00 2001 From: Pieter Noordhuis Date: Thu, 1 Apr 2010 13:15:32 +0200 Subject: [PATCH] allow 4 free trailing bytes for each value --- zipmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zipmap.c b/zipmap.c index 8a07b388..5215954a 100644 --- a/zipmap.c +++ b/zipmap.c @@ -92,7 +92,7 @@ /* The following defines the max value for the field described in the * comments above, that is, the max number of trailing bytes in a value. */ -#define ZIPMAP_VALUE_MAX_FREE 5 +#define ZIPMAP_VALUE_MAX_FREE 4 /* The following macro returns the number of bytes needed to encode the length * for the integer value _l, that is, 1 byte for lengths < ZIPMAP_BIGLEN and -- 2.47.2