diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 2004-06-17 17:16:53 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2004-06-17 17:16:53 +0000 |
commit | f3732fd15b5a493a090a0453f937a78949c65f7d (patch) | |
tree | fe8b297144afd6d6f7db41275c72cb5eb663ec02 /usr.bin/fstat/fstat.h | |
parent | c0d431fe315475c5fe50084db455416148d57914 (diff) | |
download | src-f3732fd15b5a493a090a0453f937a78949c65f7d.tar.gz src-f3732fd15b5a493a090a0453f937a78949c65f7d.zip |
Second half of the dev_t cleanup.
The big lines are:
NODEV -> NULL
NOUDEV -> NODEV
udev_t -> dev_t
udev2dev() -> findcdev()
Various minor adjustments including handling of userland access to kernel
space struct cdev etc.
Notes
Notes:
svn path=/head/; revision=130640
Diffstat (limited to 'usr.bin/fstat/fstat.h')
-rw-r--r-- | usr.bin/fstat/fstat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/fstat/fstat.h b/usr.bin/fstat/fstat.h index 9cfbd6298b45..cf4e15aede00 100644 --- a/usr.bin/fstat/fstat.h +++ b/usr.bin/fstat/fstat.h @@ -64,7 +64,7 @@ extern kvm_t *kd; extern int vflg; extern int Pid; -udev_t dev2udev(struct cdev *dev); +dev_t dev2udev(struct cdev *dev); /* Additional filesystem types */ int isofs_filestat(struct vnode *vp, struct filestat *fsp); |