Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/winsup
diff options
context:
space:
mode:
authorPeter Foley <pefoley2@pefoley.com>2016-03-30 16:15:55 +0300
committerCorinna Vinschen <corinna@vinschen.de>2016-03-30 17:51:40 +0300
commit31dfc51a361fb96ea2a20e657076f842cac8790d (patch)
tree5585f94d88900ea45386c0646090d8e1e1943b6f /winsup
parentd6c651040def845321010a63f3962d63f0a0c01b (diff)
fix typo in netinit/ip.h
The type for the ip_tos member was typoed, fix it. winsup/cygwin/ChangeLog: include/netinet/ip.h: fix type of ip_tos Signed-off-by: Peter Foley <pefoley2@pefoley.com>
Diffstat (limited to 'winsup')
-rw-r--r--winsup/cygwin/include/netinet/ip.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/include/netinet/ip.h b/winsup/cygwin/include/netinet/ip.h
index b952d5324..1f6ebbe4a 100644
--- a/winsup/cygwin/include/netinet/ip.h
+++ b/winsup/cygwin/include/netinet/ip.h
@@ -63,7 +63,7 @@ struct ip {
ip_hl:4; /* header length */
#endif
#endif /* not _IP_VHL */
- u_int_8 ip_tos; /* type of service */
+ u_int8_t ip_tos; /* type of service */
u_int16_t ip_len; /* total length */
u_int16_t ip_id; /* identification */
u_int16_t ip_off; /* fragment offset field */