summaryrefslogtreecommitdiff
path: root/sys/ntfs/ntfs_ihash.c
diff options
context:
space:
mode:
authorTed Unangst <tedu@cvs.openbsd.org>2015-01-09 05:01:58 +0000
committerTed Unangst <tedu@cvs.openbsd.org>2015-01-09 05:01:58 +0000
commit94645183db727f105968ec39b103dc3c25606dc1 (patch)
tree8faf0db38a09e40e531b9bc1f3e99b784824283f /sys/ntfs/ntfs_ihash.c
parent72f6ed7720aaf6c48449734227b1ca595b570e0e (diff)
rename desiredvnodes to initialvnodes. less of a lie. ok beck deraadt
Diffstat (limited to 'sys/ntfs/ntfs_ihash.c')
-rw-r--r--sys/ntfs/ntfs_ihash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ntfs/ntfs_ihash.c b/sys/ntfs/ntfs_ihash.c
index b8ad49278b3..ff68df8eefd 100644
--- a/sys/ntfs/ntfs_ihash.c
+++ b/sys/ntfs/ntfs_ihash.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ntfs_ihash.c,v 1.17 2014/11/18 10:42:15 dlg Exp $ */
+/* $OpenBSD: ntfs_ihash.c,v 1.18 2015/01/09 05:01:57 tedu Exp $ */
/* $NetBSD: ntfs_ihash.c,v 1.1 2002/12/23 17:38:32 jdolecek Exp $ */
/*
@@ -69,7 +69,7 @@ ntfs_nthashinit(void)
if (ntfs_nthashtbl)
return;
- nthashtbl = hashinit(desiredvnodes, M_NTFSNTHASH, M_WAITOK, &nthash);
+ nthashtbl = hashinit(initialvnodes, M_NTFSNTHASH, M_WAITOK, &nthash);
if (ntfs_nthashtbl) {
free(nthashtbl, M_NTFSNTHASH, 0);
return;