diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2002-09-28 17:33:31 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2002-09-28 17:33:31 +0000 |
| commit | 5c5f6cfa529c732e104674571e383402b30bfef1 (patch) | |
| tree | 0af635d3e16ddf330774f4c528e41dde51b6903d /sys | |
| parent | 37c841831ff323187d7f749947244f7e278a14ea (diff) | |
Notes
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/sys/vnode.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/sys/vnode.h b/sys/sys/vnode.h index b6e8e843705e..89d0fa51a802 100644 --- a/sys/sys/vnode.h +++ b/sys/sys/vnode.h @@ -177,14 +177,14 @@ struct xvnode { struct { udev_t xvu_dev; /* device, if VDIR/VREG/VLNK */ ino_t xvu_ino; /* id, if VDIR/VREG/VLNK */ - }; + } xv_uns; } xv_un; }; #define xv_socket xv_un.xvu_socket #define xv_fifo xv_un.xvu_fifo #define xv_rdev xv_un.xvu_rdev -#define xv_dev xv_un.xvu_dev -#define xv_ino xv_un.xvu_ino +#define xv_dev xv_un.xv_uns.xvu_dev +#define xv_ino xv_un.xv_uns.xvu_ino #define VN_POLLEVENT(vp, events) \ do { \ |
