mirror of
https://github.com/fluencelabs/redis
synced 2025-03-19 17:10:50 +00:00
Removed useless newlines from hashTypeCurrentObject().
This commit is contained in:
parent
6b9c661838
commit
8853698a6f
@ -384,15 +384,12 @@ robj *hashTypeCurrentObject(hashTypeIterator *hi, int what) {
|
|||||||
} else {
|
} else {
|
||||||
dst = createStringObjectFromLongLong(vll);
|
dst = createStringObjectFromLongLong(vll);
|
||||||
}
|
}
|
||||||
|
|
||||||
} else if (hi->encoding == REDIS_ENCODING_HT) {
|
} else if (hi->encoding == REDIS_ENCODING_HT) {
|
||||||
hashTypeCurrentFromHashTable(hi, what, &dst);
|
hashTypeCurrentFromHashTable(hi, what, &dst);
|
||||||
incrRefCount(dst);
|
incrRefCount(dst);
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
redisPanic("Unknown hash encoding");
|
redisPanic("Unknown hash encoding");
|
||||||
}
|
}
|
||||||
|
|
||||||
return dst;
|
return dst;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user