diff options
Diffstat (limited to 'sys/dev/vn/vn.c')
-rw-r--r-- | sys/dev/vn/vn.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/vn/vn.c b/sys/dev/vn/vn.c index 29f4e7a..95b4e46 100644 --- a/sys/dev/vn/vn.c +++ b/sys/dev/vn/vn.c @@ -137,10 +137,10 @@ struct vn_softc { struct ucred *sc_cred; /* credentials */ int sc_maxactive; /* max # of active requests */ u_long sc_options; /* options */ - SLIST_ENTRY(vn_softc) sc_list; + SLIST_ENTRY(struct vn_softc) sc_list; }; -static SLIST_HEAD(, vn_softc) vn_list; +static SLIST_HEAD(, struct vn_softc) vn_list; /* sc_flags */ #define VNF_INITED 0x01 |