From a86ad87d84da675489800a31bb730a0038d29321 Mon Sep 17 00:00:00 2001 From: Gerard Marull-Paretas Date: Fri, 14 Apr 2023 00:20:37 +0200 Subject: [PATCH] shell: add missing blank line after declaration Fix checkpatch compliance issue by adding a blank line after declaration. Signed-off-by: Gerard Marull-Paretas --- subsys/shell/shell.c | 1 + 1 file changed, 1 insertion(+) diff --git a/subsys/shell/shell.c b/subsys/shell/shell.c index beb5b1d6bb3..25dcdad3129 100644 --- a/subsys/shell/shell.c +++ b/subsys/shell/shell.c @@ -1118,6 +1118,7 @@ static void state_collect(const struct shell *sh) __fallthrough; case 'L': {/* INSERT Button in VT100 mode */ bool status = z_flag_insert_mode_get(sh); + z_flag_insert_mode_set(sh, !status); break; }