Aesthetic change to make a line more 80-cols friendly.

This commit is contained in:
antirez 2013-02-21 16:24:48 +01:00
parent 5fd9f701da
commit 3a99d1228a

View File

@ -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 {