API change function name fix

This commit is contained in:
antirez
2011-04-20 15:41:13 +02:00
parent 68495c46fe
commit cebac46589
+1 -1
View File
@@ -380,7 +380,7 @@ double computeObjectSwappability(robj *o) {
break;
case REDIS_LIST:
if (o->encoding == REDIS_ENCODING_ZIPLIST) {
asize = sizeof(*o)+ziplistSize(o->ptr);
asize = sizeof(*o)+ziplistBlobLen(o->ptr);
} else {
l = o->ptr;
ln = listFirst(l);