diff --git a/src/db.c b/src/db.c
index a7b196f5..43bff1d5 100644
--- a/src/db.c
+++ b/src/db.c
@@ -376,7 +376,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);