From 6d2ecf8a7950b6f1c5e218064f56f1a25e875410 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sat, 24 Jan 2015 09:04:28 -0600 Subject: [PATCH] Fix another error in conditional compilation; plus some additional cosmetic changes --- nshlib/nsh_netcmds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nshlib/nsh_netcmds.c b/nshlib/nsh_netcmds.c index 5540c66d8..5c4f2e748 100644 --- a/nshlib/nsh_netcmds.c +++ b/nshlib/nsh_netcmds.c @@ -292,7 +292,7 @@ static inline void net_statistics(FAR struct nsh_vtbl_s *vtbl) nsh_output(vtbl, " ICMP"); #endif #ifdef CONFIG_NET_ICMPv6 - nsh_output(vtbl, " ICMP6"); + nsh_output(vtbl, " ICMPv6"); #endif nsh_output(vtbl, "\n");