From 349d3480a6e76615824532d9845520146f03c897 Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Mon, 21 Sep 2020 23:34:12 +0700 Subject: vty: cosmetic: fix missing curly braces in vty_describe_command() Change-Id: I1585ee70a3db77aa8737f9463c4d0665f4e90d90 --- src/vty/vty.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/vty/vty.c b/src/vty/vty.c index 2b131a4e..6e7bdcb3 100644 --- a/src/vty/vty.c +++ b/src/vty/vty.c @@ -1153,7 +1153,7 @@ static void vty_describe_command(struct vty *vty) /* Get width of command string. */ cmd_width = 0; - for (i = 0; i < vector_active(describe); i++) + for (i = 0; i < vector_active(describe); i++) { if ((desc = vector_slot(describe, i)) != NULL) { unsigned int len; @@ -1167,12 +1167,13 @@ static void vty_describe_command(struct vty *vty) if (cmd_width < len) cmd_width = len; } + } /* Get width of description string. */ desc_width = vty->width - (cmd_width + 6); /* Print out description. */ - for (i = 0; i < vector_active(describe); i++) + for (i = 0; i < vector_active(describe); i++) { if ((desc = vector_slot(describe, i)) != NULL) { if (desc->cmd[0] == '\0') continue; @@ -1201,6 +1202,7 @@ static void vty_describe_command(struct vty *vty) desc->str ? desc->str : "", VTY_NEWLINE); #endif /* 0 */ } + } if ((desc = desc_cr)) { if (!desc->str) -- cgit v1.2.3