From b7559d68c74a3b733faba38341ece3d95317f138 Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Mon, 4 Mar 2024 08:48:42 -0800 Subject: [PATCH] client: remove unneeded initialization --- client/display.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/display.c b/client/display.c index 64125934..628b5912 100644 --- a/client/display.c +++ b/client/display.c @@ -194,7 +194,7 @@ void display_refresh_set_cmd(const char *family, const char *entity, for (i = 0; i < argc; i++) { bool needs_quotes = false; - char *p = argv[i]; + char *p; for (p = argv[i]; *p != '\0'; p++) { if (*p != ' ')