diff options
author | Stuart Henderson <sthen@cvs.openbsd.org> | 2011-07-20 19:00:36 +0000 |
---|---|---|
committer | Stuart Henderson <sthen@cvs.openbsd.org> | 2011-07-20 19:00:36 +0000 |
commit | 363e3d3d5bc719f6a90ee977b325ffbe6d2fbbae (patch) | |
tree | 92262fa611a5b72d54295dc6be64480736132c4e /sys/dev/pci | |
parent | f18acdf1b716a340b6ac041d5576b96cb55f01e1 (diff) |
spell FALLTHROUGH correctly
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/mpii.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/mpii.c b/sys/dev/pci/mpii.c index e103676120d..ae37b530749 100644 --- a/sys/dev/pci/mpii.c +++ b/sys/dev/pci/mpii.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mpii.c,v 1.45 2011/07/17 22:46:48 matthew Exp $ */ +/* $OpenBSD: mpii.c,v 1.46 2011/07/20 19:00:35 sthen Exp $ */ /* * Copyright (c) 2010 Mike Belopuhov <mkb@crypt.org.ru> * Copyright (c) 2009 James Giannoules @@ -5353,7 +5353,7 @@ mpii_refresh_sensors(void *arg) sc->sc_sensors[i].status = SENSOR_S_OK; break; case BIOC_SVINVALID: - /* FALLTRHOUGH */ + /* FALLTHROUGH */ default: sc->sc_sensors[i].value = 0; /* unknown */ sc->sc_sensors[i].status = SENSOR_S_UNKNOWN; |