git: 176336c65a49 - stable/14 - mwlstats: Fix a typo in an error message

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Thu, 25 Apr 2024 06:17:15 UTC
The branch stable/14 has been updated by gbe:

URL: https://cgit.FreeBSD.org/src/commit/?id=176336c65a49d1262b89dc394d0345eea529d441

commit 176336c65a49d1262b89dc394d0345eea529d441
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2024-04-20 12:02:54 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2024-04-25 06:16:42 +0000

    mwlstats: Fix a typo in an error message
    
    - s/the the/the/
    
    (cherry picked from commit e1e149ad8ada85267e981cb9d4c6b48d4ce9e1f4)
---
 tools/tools/mwl/mwlstats/mwlstats.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/tools/mwl/mwlstats/mwlstats.c b/tools/tools/mwl/mwlstats/mwlstats.c
index 925ed62de716..c9f6fe1ada2b 100644
--- a/tools/tools/mwl/mwlstats/mwlstats.c
+++ b/tools/tools/mwl/mwlstats/mwlstats.c
@@ -126,7 +126,7 @@ static const struct fmt mwlstats[] = {
 #define	S_RX_FRAGERROR	AFTER(S_RX_OVERFLOW)
 	{ 6,	"rxfrag",	"rxfrag",	"rx failed in f/w due to defrag" },
 #define	S_RX_MEMERROR	AFTER(S_RX_FRAGERROR)
-	{ 5,	"rxmem",	"rxmem",	"rx failed in f/w 'cuz out of of memory" },
+	{ 5,	"rxmem",	"rxmem",	"rx failed in f/w 'cuz out of memory" },
 #define	S_PTRERROR	AFTER(S_RX_MEMERROR)
 	{ 6,	"badptr",	"badptr",	"MAC internal pointer problem" },
 #define	S_TX_UNDERFLOW	AFTER(S_PTRERROR)