mirror of
https://github.com/fluencelabs/redis
synced 2025-06-18 11:41:20 +00:00
translated a few long logn into int64_t for correctness and to avoid compilation warnings as well
This commit is contained in:
@ -112,7 +112,7 @@ robj *setTypeNext(setTypeIterator *si) {
|
||||
incrRefCount(ret);
|
||||
}
|
||||
} else if (si->encoding == REDIS_ENCODING_INTSET) {
|
||||
long long llval;
|
||||
int64_t llval;
|
||||
if (intsetGet(si->subject->ptr,si->ii++,&llval))
|
||||
ret = createStringObjectFromLongLong(llval);
|
||||
}
|
||||
|
Reference in New Issue
Block a user