Commit 1c0c5517 authored by antirez's avatar antirez
Browse files

decrRefCount -> decrRefCountVoid in list constructor.

parent 40f822da
...@@ -97,7 +97,7 @@ robj *dupStringObject(robj *o) { ...@@ -97,7 +97,7 @@ robj *dupStringObject(robj *o) {
robj *createListObject(void) { robj *createListObject(void) {
list *l = listCreate(); list *l = listCreate();
robj *o = createObject(REDIS_LIST,l); robj *o = createObject(REDIS_LIST,l);
listSetFreeMethod(l,decrRefCount); listSetFreeMethod(l,decrRefCountVoid);
o->encoding = REDIS_ENCODING_LINKEDLIST; o->encoding = REDIS_ENCODING_LINKEDLIST;
return o; return o;
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment