summaryrefslogtreecommitdiffstats
path: root/bin/ed
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/ed
parentc7378f848bc6b0fb2ba56c417a252bf169c9c908 (diff)
downloadFreeBSD-src-c88222c6c0149f22317404fa4c67eba023d90206.zip
FreeBSD-src-c88222c6c0149f22317404fa4c67eba023d90206.tar.gz
Replace various spellings with FALLTHROUGH which is lint()able
Diffstat (limited to 'bin/ed')
-rw-r--r--bin/ed/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ed/main.c b/bin/ed/main.c
index 349dbbf..2cebaf8 100644
--- a/bin/ed/main.c
+++ b/bin/ed/main.c
@@ -355,7 +355,7 @@ next_addr(void)
addr = addr_last;
break;
}
- /* FALL THROUGH */
+ /* FALLTHROUGH */
default:
if (ibufp == hd)
return EOF;
@@ -489,7 +489,7 @@ exec_command(void)
case 'e':
if (modified && !scripted)
return EMOD;
- /* fall through */
+ /* FALLTHROUGH */
case 'E':
if (addr_cnt > 0) {
errmsg = "unexpected address";
OpenPOWER on IntegriCloud