diff options
author | 2007-02-14 00:53:47 +0000 | |
---|---|---|
committer | 2007-02-14 00:53:47 +0000 | |
commit | 83344e41421b7b24c3a018529e91e580978b87cc (patch) | |
tree | 07d05bf79ea9f82571ca07f6e04bd57f9c612f79 /sys/kern/vfs_subr.c | |
parent | bus_space does byte swapping to cope with host endianness for us, so remove (diff) | |
download | wireguard-openbsd-83344e41421b7b24c3a018529e91e580978b87cc.tar.xz wireguard-openbsd-83344e41421b7b24c3a018529e91e580978b87cc.zip |
Consistently spell FALLTHROUGH to appease lint.
ok kettenis@ cloder@ tom@ henning@
Diffstat (limited to 'sys/kern/vfs_subr.c')
-rw-r--r-- | sys/kern/vfs_subr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c index 0e578357804..7a2642d39f0 100644 --- a/sys/kern/vfs_subr.c +++ b/sys/kern/vfs_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfs_subr.c,v 1.136 2007/02/13 17:04:14 mickey Exp $ */ +/* $OpenBSD: vfs_subr.c,v 1.137 2007/02/14 00:53:48 jsg Exp $ */ /* $NetBSD: vfs_subr.c,v 1.53 1996/04/22 01:39:13 christos Exp $ */ /* @@ -2178,7 +2178,7 @@ reassignbuf(struct buf *bp) delay = syncdelay / 3; break; } - /* fall through */ + /* FALLTHROUGH */ default: delay = syncdelay; } |