git: 0cb97c19b1d2 - stable/12 - mwlstats: Fix a typo in an error message

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

URL: https://cgit.FreeBSD.org/src/commit/?id=0cb97c19b1d22e28918b3ea9c6df57c43a2f3e5d

commit 0cb97c19b1d22e28918b3ea9c6df57c43a2f3e5d
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:17:58 +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 00d0c75a2376..e38cb6efd53f 100644
--- a/tools/tools/mwl/mwlstats/mwlstats.c
+++ b/tools/tools/mwl/mwlstats/mwlstats.c
@@ -128,7 +128,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)