summaryrefslogtreecommitdiff
path: root/sys/netinet
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1999-01-03 18:20:36 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1999-01-03 18:20:36 +0000
commit78dfff6c84d64ddeea837859aaa0c70e7aa0ed91 (patch)
tree088cb4ae002e8ad5ecba7e382e47b818bf6316d4 /sys/netinet
parentf9f294a5cb938bf77d479214c5480e09619d428c (diff)
use int8_t, not char in c++ case for consistency and fix indentation
Diffstat (limited to 'sys/netinet')
-rw-r--r--sys/netinet/in.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/in.h b/sys/netinet/in.h
index 9ff83f1cc05..ec0b122c243 100644
--- a/sys/netinet/in.h
+++ b/sys/netinet/in.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: in.h,v 1.14 1999/01/01 11:15:03 deraadt Exp $ */
+/* $OpenBSD: in.h,v 1.15 1999/01/03 18:20:35 millert Exp $ */
/* $NetBSD: in.h,v 1.20 1996/02/13 23:41:47 christos Exp $ */
/*
@@ -210,7 +210,7 @@ struct sockaddr_in {
struct ip_opts {
struct in_addr ip_dst; /* first hop, 0 w/o src rt */
#if defined(__cplusplus)
- char Ip_opts[40]; /* cannot have same name as class */
+ int8_t Ip_opts[40]; /* cannot have same name as class */
#else
int8_t ip_opts[40]; /* actually variable in size */
#endif