From 37641f86f1a209d796b3679ab72c92f2ace89fb7 Mon Sep 17 00:00:00 2001 From: jhb Date: Thu, 7 Aug 2003 15:04:27 +0000 Subject: Consistently use the BSD u_int and u_short instead of the SYSV uint and ushort. In most of these files, there was a mixture of both styles and this change just makes them self-consistent. Requested by: bde (kern_ktrace.c) --- sys/boot/i386/libi386/biospnp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/boot') diff --git a/sys/boot/i386/libi386/biospnp.c b/sys/boot/i386/libi386/biospnp.c index 1bf5a22..611636d 100644 --- a/sys/boot/i386/libi386/biospnp.c +++ b/sys/boot/i386/libi386/biospnp.c @@ -263,7 +263,7 @@ biospnp_call(int func, const char *fmt, ...) switch(*p) { case 'w': - i = va_arg(ap, uint); + i = va_arg(ap, u_int); *(u_int16_t *)argp = i; argp += sizeof(u_int16_t); break; -- cgit v1.1