mirror of
https://github.com/fluencelabs/redis
synced 2025-05-01 13:32:13 +00:00
API change function name fix
This commit is contained in:
parent
68495c46fe
commit
cebac46589
2
src/vm.c
2
src/vm.c
@ -380,7 +380,7 @@ double computeObjectSwappability(robj *o) {
|
|||||||
break;
|
break;
|
||||||
case REDIS_LIST:
|
case REDIS_LIST:
|
||||||
if (o->encoding == REDIS_ENCODING_ZIPLIST) {
|
if (o->encoding == REDIS_ENCODING_ZIPLIST) {
|
||||||
asize = sizeof(*o)+ziplistSize(o->ptr);
|
asize = sizeof(*o)+ziplistBlobLen(o->ptr);
|
||||||
} else {
|
} else {
|
||||||
l = o->ptr;
|
l = o->ptr;
|
||||||
ln = listFirst(l);
|
ln = listFirst(l);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user