From: Ralph Corderoy Date: Thu, 20 Oct 2016 23:06:11 +0000 (+0100) Subject: Don't `else' after goto. Simplify control flow. X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/f1595ee7fc4db1bf8c50b00a796fb3f9b1d66c21?ds=sidebyside;hp=f9aee0f150e0d4bb93d1c8af5af2878423c81b04 Don't `else' after goto. Simplify control flow. --- diff --git a/uip/show.c b/uip/show.c index b7f85fe1..25ed7573 100644 --- a/uip/show.c +++ b/uip/show.c @@ -192,8 +192,7 @@ usage: } else { if (mode != SHOW) goto usage; - else - app_msgarg(&msgs, cp); + app_msgarg(&msgs, cp); } }