git: e1e149ad8ada - main - mwlstats: Fix a typo in an error message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 20 Apr 2024 12:03:06 UTC
The branch main has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=e1e149ad8ada85267e981cb9d4c6b48d4ce9e1f4 commit e1e149ad8ada85267e981cb9d4c6b48d4ce9e1f4 Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2024-04-20 12:02:54 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2024-04-20 12:02:54 +0000 mwlstats: Fix a typo in an error message - s/the the/the/ MFC after: 5 days --- 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)