logswan

Fast Web log analyzer using probabilistic data structures
Log | Files | Refs | README | LICENSE

commit 97133c3d00dd18b7c63c86e9a5a1945f45c58c2e
parent 2c245555b3a5d8ec74bd023ba020e8fc5dc927d2
Author: Frederic Cambus <fcambus@users.sourceforge.net>
Date:   Thu, 23 Jul 2015 23:37:54 +0200

Updating HLL dependency

Diffstat:
Mdeps/hll/hll.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/deps/hll/hll.c b/deps/hll/hll.c @@ -128,7 +128,7 @@ int hll_load(struct HLL *hll, const void *registers, size_t size) { s >>= 1; } - if(!bits || (1 << bits) != size) { + if(!bits || ((size_t)1 << bits) != size) { errno = EINVAL; return -1; }