diff options
Diffstat (limited to 'sys/fs/hpfs/hpfs_hash.c')
-rw-r--r-- | sys/fs/hpfs/hpfs_hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/hpfs/hpfs_hash.c b/sys/fs/hpfs/hpfs_hash.c index a948ade..0d70eb7 100644 --- a/sys/fs/hpfs/hpfs_hash.c +++ b/sys/fs/hpfs/hpfs_hash.c @@ -50,7 +50,7 @@ MALLOC_DEFINE(M_HPFSHASH, "HPFS hash", "HPFS node hash tables"); /* * Structures associated with hpfsnode cacheing. */ -static LIST_HEAD(hphashhead, hpfsnode) *hpfs_hphashtbl; +static LIST_HEAD(hphashhead, struct hpfsnode) *hpfs_hphashtbl; static u_long hpfs_hphash; /* size of hash table - 1 */ #define HPNOHASH(dev, lsn) (&hpfs_hphashtbl[(minor(dev) + (lsn)) & hpfs_hphash]) #ifndef NULL_SIMPLELOCKS |