mirror of
https://github.com/fluencelabs/redis
synced 2025-06-17 11:11:20 +00:00
Fixed over-80-cols comment in db.c
This commit is contained in:
3
src/db.c
3
src/db.c
@ -376,7 +376,8 @@ void renameGenericCommand(redisClient *c, int nx) {
|
|||||||
addReply(c,shared.czero);
|
addReply(c,shared.czero);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
/* Overwrite: delete the old key before creating the new one with the same name. */
|
/* Overwrite: delete the old key before creating the new one
|
||||||
|
* with the same name. */
|
||||||
dbDelete(c->db,c->argv[2]);
|
dbDelete(c->db,c->argv[2]);
|
||||||
}
|
}
|
||||||
dbAdd(c->db,c->argv[2],o);
|
dbAdd(c->db,c->argv[2],o);
|
||||||
|
Reference in New Issue
Block a user