mwlstats: Fix a typo in an error message

- s/the the/the/

(cherry picked from commit e1e149ad8a)
This commit is contained in:
Gordon Bergling 2024-04-20 14:02:54 +02:00
parent ce775a889a
commit 1002fa246b

View file

@ -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)