git: 87d901a1721d - stable/12 - iwn(4): Correct a typo in a kernel error message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 09 Sep 2022 05:20:26 UTC
The branch stable/12 has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=87d901a1721d8b05f7a0f2e2024bee347127fbda commit 87d901a1721d8b05f7a0f2e2024bee347127fbda Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2022-09-04 10:23:27 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2022-09-09 05:20:14 +0000 iwn(4): Correct a typo in a kernel error message - s/settting/setting/ (cherry picked from commit dc79640e92197b3d55174824891243dbb03e4f01) --- 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 1c2679b6583a..ae71e1301972 100644 --- a/sys/dev/iwn/if_iwn.c +++ b/sys/dev/iwn/if_iwn.c @@ -9105,7 +9105,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); }