diff options
author | charnier <charnier@FreeBSD.org> | 2002-08-25 13:23:09 +0000 |
---|---|---|
committer | charnier <charnier@FreeBSD.org> | 2002-08-25 13:23:09 +0000 |
commit | 7dd9d470599f145845572ac1f0d4b621c19c1cdb (patch) | |
tree | 9d932320e38df05718ee72d760a4d0d204431b9b /usr.bin/yacc | |
parent | 4966efff7bc9071f04706819e62e1a291d22bcb2 (diff) | |
download | FreeBSD-src-7dd9d470599f145845572ac1f0d4b621c19c1cdb.zip FreeBSD-src-7dd9d470599f145845572ac1f0d4b621c19c1cdb.tar.gz |
Replace various spelling with FALLTHROUGH which is lint()able
Diffstat (limited to 'usr.bin/yacc')
-rw-r--r-- | usr.bin/yacc/reader.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/yacc/reader.c b/usr.bin/yacc/reader.c index 3e01e8f..7c1132d 100644 --- a/usr.bin/yacc/reader.c +++ b/usr.bin/yacc/reader.c @@ -283,7 +283,7 @@ nextc() s = cptr; break; } - /* fall through */ + /* FALLTHROUGH */ default: cptr = s; @@ -511,7 +511,7 @@ loop: FREE(t_line); return; } - /* fall through */ + /* FALLTHROUGH */ default: putc(c, f); |