Rename iterator to setTypeIterator for consistency

This commit is contained in:
Pieter Noordhuis
2010-08-21 11:25:13 +02:00
parent 029e5577ff
commit cb72d0f155
4 changed files with 13 additions and 13 deletions

View File

@ -220,7 +220,7 @@ void sortCommand(redisClient *c) {
}
listTypeReleaseIterator(li);
} else if (sortval->type == REDIS_SET) {
setIterator *si = setTypeInitIterator(sortval);
setTypeIterator *si = setTypeInitIterator(sortval);
robj *ele;
while((ele = setTypeNext(si)) != NULL) {
vector[j].obj = ele;