git: e443f2102eb5 - main - bxe(4): Fix a typo in an error message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 02 Apr 2022 06:56:35 UTC
The branch main has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=e443f2102eb596f9e0bd9a8bc084755229bd7e5f commit e443f2102eb596f9e0bd9a8bc084755229bd7e5f Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2022-04-02 06:56:06 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2022-04-02 06:56:06 +0000 bxe(4): Fix a typo in an error message - s/intergers/integers/ MFC after: 3 days --- 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 a50a190afd22..b3bae94198b0 100644 --- a/sys/dev/bxe/bxe.c +++ b/sys/dev/bxe/bxe.c @@ -15944,7 +15944,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; }