Ignore it or go to HKLM\CurrentControlSet\Control\Network\Connections\StatMon\ShowLanErrors and delete the ShowLanErrors key.
What this does -- to this day I've never seen a clear explanation, but here is what I've gather --
Every IP packet that the stack can't decode or disposition is an RX error. This includes packets and partial packets that aren't for your hardware or IP or even your WLAN (remember, these are shared frequencies).
Every IP packet the stack can't send out is a TX error. These will be a lot more rare because your stack will only get TX packets its supposed to handle. It could be that the card was in the wrong state. This isn't a problem because TCPIP.SYS simply does it again. It could be that an ICMP was blocked, which are optional anyway. The error, and the right response to the error, caused no hiccup at all.
So when using these counters, they're relative over time. They ought to be graphed, the counters are useless alone and disabled (hidden) by default.
0 is perfect, however 0 is never going to happen in real life. (You may see 0 but that's a diagnostic thing -- some network cards handle errors in hardware.) Networks have collisions and noise and these alone are not signs of trouble.
Myself, here's what I've racked up in 16 hours.. (some are errors, some are just counts -- also my wireless card is Intel which handles some errors on card rather than in the OS, as you observe some hardware offloads most all error checking and handling).
robb@topol015:~$ nstat
#kernel
IpInReceives 166872 0.0
IpInAddrErrors 173 0.0
IpInDelivers 157059 0.0
IpOutRequests 138615 0.0
IpOutNoRoutes 39 0.0
IcmpInErrors 8898 0.0
IcmpInDestUnreachs 3 0.0
IcmpInTimeExcds 36 0.0
IcmpInParmProbs 25 0.0
IcmpInEchoReps 46 0.0
IcmpInTimestamps 8791 0.0
IcmpOutErrors 8914 0.0
IcmpOutTimeExcds 36 0.0
IcmpOutTimestamps 46 0.0
IcmpMsgInType0 8791 0.0
IcmpMsgInType3 36 0.0
IcmpMsgInType8 46 0.0
IcmpMsgInType11 25 0.0
IcmpMsgOutType0 46 0.0
IcmpMsgOutType3 36 0.0
IcmpMsgOutType69 8832 0.0
TcpActiveOpens 6191 0.0
TcpPassiveOpens 92 0.0
TcpAttemptFails 14 0.0
TcpEstabResets 159 0.0
TcpInSegs 143059 0.0
TcpOutSegs 126463 0.0
TcpRetransSegs 907 0.0
TcpInErrs 26 0.0
TcpOutRsts 904 0.0
UdpInDatagrams 5052 0.0
UdpInErrors 1 0.0
UdpOutDatagrams 2356 0.0
UdpRcvbufErrors 1 0.0
Ip6InReceives 2 0.0
Ip6InDelivers 2 0.0
Ip6OutRequests 20 0.0
Ip6OutMcastPkts 24 0.0
Icmp6OutMsgs 18 0.0
Icmp6OutRouterSolicits 9 0.0
Icmp6OutNeighborSolicits 3 0.0
Icmp6OutMLDv2Reports 6 0.0
Icmp6OutType133 9 0.0
Icmp6OutType135 3 0.0
Icmp6OutType143 6 0.0
TcpExtPruneCalled 176 0.0
TcpExtTW 1450 0.0
TcpExtTWRecycled 1 0.0
TcpExtPAWSEstab 70 0.0
TcpExtDelayedACKs 5415 0.0
TcpExtDelayedACKLost 432 0.0
TcpExtTCPPrequeued 6 0.0
TcpExtTCPDirectCopyFromPrequeue 1858 0.0
TcpExtTCPHPHits 76920 0.0
TcpExtTCPHPHitsToUser 2 0.0
TcpExtTCPPureAcks 16079 0.0
TcpExtTCPHPAcks 1607 0.0
TcpExtTCPSackRecovery 2 0.0
TcpExtTCPTSReorder 1 0.0
TcpExtTCPFullUndo 1 0.0
TcpExtTCPPartialUndo 2 0.0
TcpExtTCPDSACKUndo 1 0.0
TcpExtTCPLossUndo 51 0.0
TcpExtTCPSackFailures 1 0.0
TcpExtTCPFastRetrans 5 0.0
TcpExtTCPForwardRetrans 1 0.0
TcpExtTCPSlowStartRetrans 3 0.0
TcpExtTCPTimeouts 680 0.0
TcpExtTCPRcvCollapsed 3842 0.0
TcpExtTCPDSACKOldSent 416 0.0
TcpExtTCPDSACKOfoSent 8 0.0
TcpExtTCPDSACKRecv 55 0.0
TcpExtTCPAbortOnData 70 0.0
TcpExtTCPAbortOnClose 28 0.0
TcpExtTCPAbortOnTimeout 5 0.0
TcpExtTCPDSACKIgnoredOld 5 0.0
TcpExtTCPDSACKIgnoredNoUndo 21 0.0
TcpExtTCPSpuriousRTOs 1 0.0
IpExtInMcastPkts 192 0.0
IpExtOutMcastPkts 152 0.0
IpExtInBcastPkts 2985 0.0
IpExtOutBcastPkts 375 0.0
robb@topol015:~$ uptime
01:56:45 up 16:21, 2 users, load average: 0.37, 0.31, 0.27
robb@topol015:~$
HTH.
You can ignore that display -- pretty much forever. The command "netstat -s" has similarly useful statistics if you are experiencing a real performance or integrity problem and want to troubleshoot it. The error display is not needed.