summaryrefslogtreecommitdiffstats
path: root/printf.c
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2018-08-16 23:57:42 -0400
committerTavian Barnes <tavianator@tavianator.com>2018-08-16 23:57:42 -0400
commitdd7dfb391085a122631395cf001b196feedc7747 (patch)
tree08234b3ae65b70ec61067ebe67d059326480075e /printf.c
parent2aceb02c680b689e7cecb07573347418f2dd03be (diff)
downloadbfs-dd7dfb391085a122631395cf001b196feedc7747.tar.xz
Add some missing fallthrough comments
Diffstat (limited to 'printf.c')
-rw-r--r--printf.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/printf.c b/printf.c
index 0a969d8..c2b165e 100644
--- a/printf.c
+++ b/printf.c
@@ -590,6 +590,7 @@ struct bfs_printf *parse_bfs_printf(const char *format, struct cmdline *cmdline)
case '0':
case '+':
must_be_numeric = true;
+ // Fallthrough
case ' ':
case '-':
if (strchr(directive->str, c)) {