From 2ea9518a530bf64cfe3b6e124f67efc1d355240f Mon Sep 17 00:00:00 2001 From: antirez Date: Wed, 23 Jan 2013 16:44:45 +0100 Subject: [PATCH] Fixed over-80-cols comment in db.c --- src/db.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/db.c b/src/db.c index d1b22af69..7f1702968 100644 --- a/src/db.c +++ b/src/db.c @@ -382,7 +382,8 @@ void renameGenericCommand(redisClient *c, int nx) { addReply(c,shared.czero); 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]); } dbAdd(c->db,c->argv[2],o);