diff options
author | charnier <charnier@FreeBSD.org> | 2002-08-25 13:30:43 +0000 |
---|---|---|
committer | charnier <charnier@FreeBSD.org> | 2002-08-25 13:30:43 +0000 |
commit | aa31b7d1e4fb1585f9c445a653bf78416fb59bab (patch) | |
tree | 0c0dc23f43413d9f4c243f3e11871d151f3f8c55 /usr.sbin/moused/moused.c | |
parent | 7dd9d470599f145845572ac1f0d4b621c19c1cdb (diff) | |
download | FreeBSD-src-aa31b7d1e4fb1585f9c445a653bf78416fb59bab.zip FreeBSD-src-aa31b7d1e4fb1585f9c445a653bf78416fb59bab.tar.gz |
Replace various spelling with FALLTHROUGH which is lint()able
Diffstat (limited to 'usr.sbin/moused/moused.c')
-rw-r--r-- | usr.sbin/moused/moused.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/moused/moused.c b/usr.sbin/moused/moused.c index 78f655e..5595fd3 100644 --- a/usr.sbin/moused/moused.c +++ b/usr.sbin/moused/moused.c @@ -733,7 +733,7 @@ main(int argc, char *argv[]) case MOUSE_PROTO_INPORT: /* INPORT and BUS are the same... */ rodent.rtype = MOUSE_PROTO_BUS; - /* FALL THROUGH */ + /* FALLTHROUGH */ case MOUSE_PROTO_BUS: if (!rodent.portname) rodent.portname = "/dev/mse0"; @@ -1398,7 +1398,7 @@ r_init(void) case MOUSE_PROTO_SYSMOUSE: if (rodent.hw.iftype == MOUSE_IF_SYSMOUSE) setmousespeed(1200, rodent.baudrate, rodentcflags[rodent.rtype]); - /* fall through */ + /* FALLTHROUGH */ case MOUSE_PROTO_BUS: case MOUSE_PROTO_INPORT: @@ -1877,7 +1877,7 @@ r_protocol(u_char rBuf, mousestatus_t *act) break; case 0: /* device type packet - shouldn't happen */ - /* FALL THROUGH */ + /* FALLTHROUGH */ default: act->dx = act->dy = 0; act->button = act->obutton; |