diff options
author | 2011-07-20 19:00:35 +0000 | |
---|---|---|
committer | 2011-07-20 19:00:35 +0000 | |
commit | 1ded551aefc065da1c3862e0b3e4d41a04792fef (patch) | |
tree | 597647d8ab791dc5ee8b9d5ec47a6f71ad31c8bf | |
parent | Document complex math library. (diff) | |
download | wireguard-openbsd-1ded551aefc065da1c3862e0b3e4d41a04792fef.tar.xz wireguard-openbsd-1ded551aefc065da1c3862e0b3e4d41a04792fef.zip |
spell FALLTHROUGH correctly
-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; |