mirror of
https://github.com/fluencelabs/redis
synced 2025-04-25 02:22:13 +00:00
Fix function names in zslDeleteNode() top comment.
This commit is contained in:
parent
839bbcb039
commit
49ccd2a8e1
@ -186,7 +186,8 @@ zskiplistNode *zslInsert(zskiplist *zsl, double score, sds ele) {
|
|||||||
return x;
|
return x;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Internal function used by zslDelete, zslDeleteByScore and zslDeleteByRank */
|
/* Internal function used by zslDelete, zslDeleteRangeByScore and
|
||||||
|
* zslDeleteRangeByRank. */
|
||||||
void zslDeleteNode(zskiplist *zsl, zskiplistNode *x, zskiplistNode **update) {
|
void zslDeleteNode(zskiplist *zsl, zskiplistNode *x, zskiplistNode **update) {
|
||||||
int i;
|
int i;
|
||||||
for (i = 0; i < zsl->level; i++) {
|
for (i = 0; i < zsl->level; i++) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user