mirror of
https://github.com/fluencelabs/redis
synced 2025-06-18 03:31:21 +00:00
Fix type that was not renamed and compiler warning
This commit is contained in:
@ -81,7 +81,7 @@ int setTypeIsMember(robj *subject, robj *value) {
|
||||
}
|
||||
|
||||
setTypeIterator *setTypeInitIterator(robj *subject) {
|
||||
setTypeIterator *si = zmalloc(sizeof(setIterator));
|
||||
setTypeIterator *si = zmalloc(sizeof(setTypeIterator));
|
||||
si->subject = subject;
|
||||
si->encoding = subject->encoding;
|
||||
if (si->encoding == REDIS_ENCODING_HT) {
|
||||
|
Reference in New Issue
Block a user