summaryrefslogtreecommitdiffstats
path: root/sys/kern/uipc_syscalls.c
diff options
context:
space:
mode:
authored <ed@FreeBSD.org>2010-06-21 09:55:56 +0000
committered <ed@FreeBSD.org>2010-06-21 09:55:56 +0000
commit76489ac1ea604f511232838164573ea21e9a74a8 (patch)
tree916572d41a618634b84823c3b89048c2144938df /sys/kern/uipc_syscalls.c
parent107ec73aada25d2e0a7051e1f2a8cbef92902d04 (diff)
downloadFreeBSD-src-76489ac1ea604f511232838164573ea21e9a74a8.zip
FreeBSD-src-76489ac1ea604f511232838164573ea21e9a74a8.tar.gz
Use ISO C99 integer types in sys/kern where possible.
There are only about 100 occurences of the BSD-specific u_int*_t datatypes in sys/kern. The ISO C99 integer types are used here more often.
Diffstat (limited to 'sys/kern/uipc_syscalls.c')
-rw-r--r--sys/kern/uipc_syscalls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/uipc_syscalls.c b/sys/kern/uipc_syscalls.c
index adcb852..e987cd9 100644
--- a/sys/kern/uipc_syscalls.c
+++ b/sys/kern/uipc_syscalls.c
@@ -2602,7 +2602,7 @@ sctp_generic_recvmsg(td, uap)
} */ *uap;
{
#if (defined(INET) || defined(INET6)) && defined(SCTP)
- u_int8_t sockbufstore[256];
+ uint8_t sockbufstore[256];
struct uio auio;
struct iovec *iov, *tiov;
struct sctp_sndrcvinfo sinfo;
OpenPOWER on IntegriCloud