Made UDP flag defines unsigned (by adding the U suffix).

This commit is contained in:
likewise 2003-02-18 12:41:52 +00:00
parent da40fbd054
commit 1660e800e0

View File

@ -49,9 +49,9 @@ struct udp_hdr {
PACK_STRUCT_FIELD(u16_t chksum);
} PACK_STRUCT_STRUCT;
#define UDP_FLAGS_NOCHKSUM 0x01
#define UDP_FLAGS_UDPLITE 0x02
#define UDP_FLAGS_CONNECTED 0x04
#define UDP_FLAGS_NOCHKSUM 0x01U
#define UDP_FLAGS_UDPLITE 0x02U
#define UDP_FLAGS_CONNECTED 0x04U
struct udp_pcb {
struct udp_pcb *next;