From 3a99d1228ae1d15897bbdd713d72e6394e0684c0 Mon Sep 17 00:00:00 2001 From: antirez Date: Thu, 21 Feb 2013 16:24:48 +0100 Subject: [PATCH] Aesthetic change to make a line more 80-cols friendly. --- src/cluster.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cluster.c b/src/cluster.c index 6959a236e..d250dec85 100644 --- a/src/cluster.c +++ b/src/cluster.c @@ -1431,9 +1431,9 @@ void clusterCommand(redisClient *c) { /* If this node was importing this slot, assigning the slot to * itself also clears the importing status. */ - if (n == server.cluster->myself && server.cluster->importing_slots_from[slot]) + if (n == server.cluster->myself && + server.cluster->importing_slots_from[slot]) server.cluster->importing_slots_from[slot] = NULL; - clusterDelSlot(slot); clusterAddSlot(n,slot); } else {