Trivial change for consistency.

This commit is contained in:
Gregory Nutt 2015-05-27 08:43:50 -06:00
parent eaa0daacfa
commit fe2c662ee8

View File

@ -1295,11 +1295,11 @@ int cmd_ping(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv)
{
if (seqno == -ETIMEDOUT)
{
nsh_output(vtbl, "seq=%d Request timeout\n", i);
nsh_output(vtbl, "icmp_seq=%d Request timeout\n", i);
}
else if (seqno == -ENETUNREACH)
{
nsh_output(vtbl, "seq=%d Network is unreachable\n", i);
nsh_output(vtbl, "icmp_seq=%d Network is unreachable\n", i);
}
}