git: 2bf0fa7d3957 - stable/12 - bxe(4): Fix a typo in an error message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 09 Apr 2022 06:33:57 UTC
The branch stable/12 has been updated by gbe (doc committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=2bf0fa7d3957f21481f7687cc7ed1c1608877d93
commit 2bf0fa7d3957f21481f7687cc7ed1c1608877d93
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-04-02 06:56:06 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-04-09 06:30:50 +0000
bxe(4): Fix a typo in an error message
- s/intergers/integers/
(cherry picked from commit e443f2102eb596f9e0bd9a8bc084755229bd7e5f)
---
sys/dev/bxe/bxe.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/dev/bxe/bxe.c b/sys/dev/bxe/bxe.c
index 18082b779306..8cd115138225 100644
--- a/sys/dev/bxe/bxe.c
+++ b/sys/dev/bxe/bxe.c
@@ -16018,7 +16018,7 @@ bxe_sysctl_pauseparam(SYSCTL_HANDLER_ARGS)
return (error);
}
if ((sc->bxe_pause_param < 0) || (sc->bxe_pause_param > 8)) {
- BLOGW(sc, "invalid pause param (%d) - use intergers between 1 & 8\n",sc->bxe_pause_param);
+ BLOGW(sc, "invalid pause param (%d) - use integers between 1 & 8\n",sc->bxe_pause_param);
sc->bxe_pause_param = 8;
}