From: Johnathan Jenkins Date: Mon, 29 May 2017 17:51:44 +0000 (-0700) Subject: fix compile warning on gcc7 (#32) X-Git-Tag: v1.2~40 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=67b96d4f07cc3a4f0511ad9305cb70d1c47847eb;p=nnn.git fix compile warning on gcc7 (#32) --- diff --git a/nnn.c b/nnn.c index 8859d505..4b002250 100644 --- a/nnn.c +++ b/nnn.c @@ -1558,7 +1558,7 @@ nochange: } /* Fall through to exit */ - } + } // fallthrough case SEL_QUIT: dentfree(dents); return; @@ -2082,7 +2082,7 @@ main(int argc, char *argv[]) while ((opt = getopt(argc, argv, "dSp:vh")) != -1) { switch (opt) { case 'S': - bsizeorder = 1; + bsizeorder = 1; // fallthrough case 'd': /* Open in detail mode, if set */ showdetail = 1;