summaryrefslogtreecommitdiff
path: root/sys/dev/md/md.c
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2003-08-07 15:04:27 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2003-08-07 15:04:27 +0000
commit8b149b513139803ca0fce264d653c45dfbc557d2 (patch)
treed28ecab1cd6104f6189a11004e6d3615215cf931 /sys/dev/md/md.c
parentcccd491d52980ce7206febb0d2bb7a314e7a9594 (diff)
Notes
Diffstat (limited to 'sys/dev/md/md.c')
-rw-r--r--sys/dev/md/md.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/md/md.c b/sys/dev/md/md.c
index 8576bde393e3..d79a4accc40b 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;