aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--nnn.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nnn.c b/nnn.c
index 8859d50..4b00225 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;