git: 377c2f3a457d - stable/13 - 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:14:38 UTC
The branch stable/13 has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=377c2f3a457de9fb2c9d0f99645bcfd62d2a5efa commit 377c2f3a457de9fb2c9d0f99645bcfd62d2a5efa 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:07:05 +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 920a5a9bcbcb..56c2da14259c 100644 --- a/sys/dev/bxe/bxe.c +++ b/sys/dev/bxe/bxe.c @@ -15952,7 +15952,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; }