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/isofs/cd9660/cd9660_vfsops.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/isofs/cd9660/cd9660_vfsops.c') diff --git a/sys/isofs/cd9660/cd9660_vfsops.c b/sys/isofs/cd9660/cd9660_vfsops.c index 42455f0..8df32e0 100644 --- a/sys/isofs/cd9660/cd9660_vfsops.c +++ b/sys/isofs/cd9660/cd9660_vfsops.c @@ -620,8 +620,8 @@ cd9660_statfs(mp, sbp, td) */ struct ifid { - ushort ifid_len; - ushort ifid_pad; + u_short ifid_len; + u_short ifid_pad; int ifid_ino; long ifid_start; }; -- cgit v1.1