diff options
author | jhb <jhb@FreeBSD.org> | 2003-08-07 15:04:27 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2003-08-07 15:04:27 +0000 |
commit | 37641f86f1a209d796b3679ab72c92f2ace89fb7 (patch) | |
tree | d28ecab1cd6104f6189a11004e6d3615215cf931 /sys/dev/md | |
parent | 450c201b698a84880b8cd2d816cbc526ddc72f4a (diff) | |
download | FreeBSD-src-37641f86f1a209d796b3679ab72c92f2ace89fb7.zip FreeBSD-src-37641f86f1a209d796b3679ab72c92f2ace89fb7.tar.gz |
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)
Diffstat (limited to 'sys/dev/md')
-rw-r--r-- | sys/dev/md/md.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/md/md.c b/sys/dev/md/md.c index 8576bde..d79a4ac 100644 --- a/sys/dev/md/md.c +++ b/sys/dev/md/md.c @@ -132,9 +132,9 @@ static int nshift; struct indir { uintptr_t *array; - uint total; - uint used; - uint shift; + u_int total; + u_int used; + u_int shift; }; struct md_s { @@ -174,7 +174,7 @@ struct md_s { static int mddestroy(struct md_s *sc, struct thread *td); static struct indir * -new_indir(uint shift) +new_indir(u_int shift) { struct indir *ip; |