diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2007-02-14 00:53:49 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2007-02-14 00:53:49 +0000 |
commit | 60ae46e6e1480384e517df60d57e8da1680a7f9b (patch) | |
tree | f7fc0ca493af9bd455475951a0565f9ea7f4b4af /sys/isofs/cd9660 | |
parent | 6904b8f563e3d0b1dfdb40c340fc7a22a019f6b5 (diff) |
Consistently spell FALLTHROUGH to appease lint.
ok kettenis@ cloder@ tom@ henning@
Diffstat (limited to 'sys/isofs/cd9660')
-rw-r--r-- | sys/isofs/cd9660/cd9660_rrip.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/isofs/cd9660/cd9660_rrip.c b/sys/isofs/cd9660/cd9660_rrip.c index bbbb3670561..ef4d61026a6 100644 --- a/sys/isofs/cd9660/cd9660_rrip.c +++ b/sys/isofs/cd9660/cd9660_rrip.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cd9660_rrip.c,v 1.8 2003/06/02 23:28:05 millert Exp $ */ +/* $OpenBSD: cd9660_rrip.c,v 1.9 2007/02/14 00:53:48 jsg Exp $ */ /* $NetBSD: cd9660_rrip.c,v 1.17 1997/01/24 00:27:32 cgd Exp $ */ /*- @@ -184,7 +184,7 @@ cd9660_rrip_slink(v, ana) case ISO_SUSP_CFLAG_CONTINUE: cont = 1; - /* fall thru */ + /* FALLTHROUGH */ case 0: /* Inserting component */ wlen = isonum_711(pcomp->clen); @@ -256,7 +256,7 @@ cd9660_rrip_altname(v, ana) case ISO_SUSP_CFLAG_CONTINUE: cont = 1; - /* fall thru */ + /* FALLTHROUGH */ case 0: /* Inserting component */ wlen = isonum_711(p->h.length) - 5; |