diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2003-08-07 15:04:27 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2003-08-07 15:04:27 +0000 |
| commit | 8b149b513139803ca0fce264d653c45dfbc557d2 (patch) | |
| tree | d28ecab1cd6104f6189a11004e6d3615215cf931 /sys/dev/md/md.c | |
| parent | cccd491d52980ce7206febb0d2bb7a314e7a9594 (diff) | |
Notes
Diffstat (limited to 'sys/dev/md/md.c')
| -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 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; |
