From 297950e8b817dbf3f2dbbbff497fdf3a047cc8f2 Mon Sep 17 00:00:00 2001 From: hujiecs <2844633656@qq.com> Date: Tue, 16 Oct 2018 15:48:03 +0800 Subject: several typos fixed, optimize MSETNX to avoid unnecessary loop --- src/intset.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/intset.c') diff --git a/src/intset.c b/src/intset.c index 198c90aa1..4445a5ca6 100644 --- a/src/intset.c +++ b/src/intset.c @@ -123,7 +123,7 @@ static uint8_t intsetSearch(intset *is, int64_t value, uint32_t *pos) { } else { /* Check for the case where we know we cannot find the value, * but do know the insert position. */ - if (value > _intsetGet(is,intrev32ifbe(is->length)-1)) { + if (value > _intsetGet(is,max)) { if (pos) *pos = intrev32ifbe(is->length); return 0; } else if (value < _intsetGet(is,0)) { -- cgit v1.2.1