git: dc79640e9219 - main - iwn(4): Correct a typo in a kernel error message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 04 Sep 2022 10:23:44 UTC
The branch main has been updated by gbe (doc committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=dc79640e92197b3d55174824891243dbb03e4f01
commit dc79640e92197b3d55174824891243dbb03e4f01
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-09-04 10:23:27 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-09-04 10:23:27 +0000
iwn(4): Correct a typo in a kernel error message
- s/settting/setting/
MFC after: 5 days
---
sys/dev/iwn/if_iwn.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/dev/iwn/if_iwn.c b/sys/dev/iwn/if_iwn.c
index c57734d74456..13a0f03f88a0 100644
--- a/sys/dev/iwn/if_iwn.c
+++ b/sys/dev/iwn/if_iwn.c
@@ -9123,7 +9123,7 @@ iwn_set_channel(struct ieee80211com *ic)
error = iwn_config(sc);
if (error != 0)
device_printf(sc->sc_dev,
- "%s: error %d settting channel\n", __func__, error);
+ "%s: error %d setting channel\n", __func__, error);
}
IWN_UNLOCK(sc);
}