net/icmp: Eliminate a warning.

This commit is contained in:
Gregory Nutt 2017-10-24 15:46:32 -06:00
parent d92c5a0fdb
commit 51c2fe321b
1 changed files with 6 additions and 1 deletions

View File

@ -2,7 +2,8 @@
* net/icmp/icmp_input.c * net/icmp/icmp_input.c
* Handling incoming ICMP input * Handling incoming ICMP input
* *
* Copyright (C) 2007-2009, 2012, 2014-2015 Gregory Nutt. All rights reserved. * Copyright (C) 2007-2009, 2012, 2014-2015, 2017 Gregory Nutt. All rights
* reserved.
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>
* *
* Adapted for NuttX from logic in uIP which also has a BSD-like license: * Adapted for NuttX from logic in uIP which also has a BSD-like license:
@ -333,11 +334,15 @@ void icmp_input(FAR struct net_driver_s *dev)
return; return;
typeerr: typeerr:
#ifdef CONFIG_NET_STATISTICS #ifdef CONFIG_NET_STATISTICS
g_netstats.icmp.typeerr++; g_netstats.icmp.typeerr++;
#endif #endif
#ifdef CONFIG_NET_ICMP_SOCKET
drop: drop:
#endif
#ifdef CONFIG_NET_STATISTICS #ifdef CONFIG_NET_STATISTICS
g_netstats.icmp.drop++; g_netstats.icmp.drop++;
#endif #endif