From 4437c8881af9604459c4944518695d4557c6e175 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Svensson?= Date: Mon, 28 Oct 2024 13:26:15 +0100 Subject: [PATCH] Update src/cluster.c MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Björn Svensson --- src/cluster.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cluster.c b/src/cluster.c index 59668c6a..f5959e6e 100644 --- a/src/cluster.c +++ b/src/cluster.c @@ -765,7 +765,7 @@ static int parse_cluster_nodes_line(valkeyClusterContext *cc, char *line, int i = 0; while ((p = strchr(line, ' ')) != NULL) { *p = '\0'; - switch (i++){ + switch (i++) { case 0: id = line; break; case 1: addr = line; break; case 2: flags = line; break;