Removed commas from the end of enum lists

This commit is contained in:
Simon Goldschmidt 2011-07-24 17:18:55 +02:00
parent 46af0d38fa
commit d79c5baa1b
2 changed files with 4 additions and 3 deletions

View File

@ -96,7 +96,7 @@ enum icmp6_te_code {
enum icmp6_pp_code {
ICMP6_PP_FIELD = 0, /* Erroneous header field encountered */
ICMP6_PP_HEADER = 1, /* Unrecognized next header type encountered */
ICMP6_PP_OPTION = 2, /* Unrecognized IPv6 option encountered */
ICMP6_PP_OPTION = 2 /* Unrecognized IPv6 option encountered */
};
/** This is the standard ICMP6 header. */

View File

@ -106,9 +106,10 @@ enum netconn_type {
NETCONN_UDPNOCHKSUM_IPV6 = NETCONN_UDPNOCHKSUM | NETCONN_TYPE_IPV6 /* 0x2a */,
#endif /* LWIP_IPV6 */
/* NETCONN_RAW Group */
NETCONN_RAW = 0x40,
NETCONN_RAW = 0x40
#if LWIP_IPV6
NETCONN_RAW_IPV6 = NETCONN_RAW | NETCONN_TYPE_IPV6 /* 0x48 */,
,
NETCONN_RAW_IPV6 = NETCONN_RAW | NETCONN_TYPE_IPV6 /* 0x48 */
#endif /* LWIP_IPV6 */
};