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/uvm | |
parent | 6904b8f563e3d0b1dfdb40c340fc7a22a019f6b5 (diff) |
Consistently spell FALLTHROUGH to appease lint.
ok kettenis@ cloder@ tom@ henning@
Diffstat (limited to 'sys/uvm')
-rw-r--r-- | sys/uvm/uvm_meter.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/uvm/uvm_meter.c b/sys/uvm/uvm_meter.c index 143104c113d..85265e684de 100644 --- a/sys/uvm/uvm_meter.c +++ b/sys/uvm/uvm_meter.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uvm_meter.c,v 1.21 2006/11/29 12:24:18 miod Exp $ */ +/* $OpenBSD: uvm_meter.c,v 1.22 2007/02/14 00:53:48 jsg Exp $ */ /* $NetBSD: uvm_meter.c,v 1.21 2001/07/14 06:36:03 matt Exp $ */ /* @@ -107,7 +107,7 @@ uvm_loadav(avg) case SSLEEP: if (p->p_priority > PZERO || p->p_slptime > 1) continue; - /* fall through */ + /* FALLTHROUGH */ case SRUN: case SIDL: case SONPROC: |