summaryrefslogtreecommitdiffstats
path: root/bin/ls
diff options
context:
space:
mode:
authorcharnier <charnier@FreeBSD.org>2002-08-25 13:01:47 +0000
committercharnier <charnier@FreeBSD.org>2002-08-25 13:01:47 +0000
commitc88222c6c0149f22317404fa4c67eba023d90206 (patch)
tree956af2bc985558970e580524f3f7b43cb8eea5c3 /bin/ls
parentc7378f848bc6b0fb2ba56c417a252bf169c9c908 (diff)
downloadFreeBSD-src-c88222c6c0149f22317404fa4c67eba023d90206.zip
FreeBSD-src-c88222c6c0149f22317404fa4c67eba023d90206.tar.gz
Replace various spellings with FALLTHROUGH which is lint()able
Diffstat (limited to 'bin/ls')
-rw-r--r--bin/ls/ls.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/bin/ls/ls.c b/bin/ls/ls.c
index 5884ee4..71158de 100644
--- a/bin/ls/ls.c
+++ b/bin/ls/ls.c
@@ -565,36 +565,36 @@ display(FTSENT *p, FTSENT *list)
switch (ninitmax) {
case 0:
maxinode = 0;
- /* fall through */
+ /* FALLTHROUGH */
case 1:
maxblock = 0;
- /* fall through */
+ /* FALLTHROUGH */
case 2:
maxnlink = 0;
- /* fall through */
+ /* FALLTHROUGH */
case 3:
maxuser = 0;
- /* fall through */
+ /* FALLTHROUGH */
case 4:
maxgroup = 0;
- /* fall through */
+ /* FALLTHROUGH */
case 5:
maxflags = 0;
- /* fall through */
+ /* FALLTHROUGH */
case 6:
maxsize = 0;
- /* fall through */
+ /* FALLTHROUGH */
case 7:
maxlen = 0;
- /* fall through */
+ /* FALLTHROUGH */
case 8:
maxlattr = 0;
- /* fall through */
+ /* FALLTHROUGH */
#ifdef COLORLS
if (!f_color)
#endif
f_notabs = 0;
- /* fall through */
+ /* FALLTHROUGH */
default:
break;
}
OpenPOWER on IntegriCloud