From 90ba885547e74568a69b7f9cd8e917fc5ce8d0c1 Mon Sep 17 00:00:00 2001 From: Avinash Sonawane Date: Mon, 16 Oct 2023 07:53:38 +0530 Subject: [PATCH] Remove redundant `;` PR #4371 Signed-off-by: Romain Vimont --- app/src/cli.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/cli.c b/app/src/cli.c index 86b720fc..d334107a 100644 --- a/app/src/cli.c +++ b/app/src/cli.c @@ -1085,7 +1085,7 @@ print_shortcut(const struct sc_shortcut *shortcut, unsigned cols) { while (shortcut->shortcuts[i]) { printf(" %s\n", shortcut->shortcuts[i]); ++i; - }; + } char *text = sc_str_wrap_lines(shortcut->text, cols, 8); if (!text) {