summaryrefslogtreecommitdiffstats
path: root/sys/fs/smbfs
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2005-02-10 12:06:34 +0000
committerphk <phk@FreeBSD.org>2005-02-10 12:06:34 +0000
commit1ac5aa5859dbdbcb4b67b1de550f859895ee1923 (patch)
treed6e079596d15dba3fd1513fc068815608f7040ad /sys/fs/smbfs
parentb37bc365fbf112cdbce48972c9e7331fdd05a919 (diff)
downloadFreeBSD-src-1ac5aa5859dbdbcb4b67b1de550f859895ee1923.zip
FreeBSD-src-1ac5aa5859dbdbcb4b67b1de550f859895ee1923.tar.gz
don't call vprint with NULL.
Diffstat (limited to 'sys/fs/smbfs')
-rw-r--r--sys/fs/smbfs/smbfs_node.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/smbfs/smbfs_node.c b/sys/fs/smbfs/smbfs_node.c
index cd5773b..e3d2f3b 100644
--- a/sys/fs/smbfs/smbfs_node.c
+++ b/sys/fs/smbfs/smbfs_node.c
@@ -103,7 +103,7 @@ smbfs_hashprint(struct mount *mp)
for(i = 0; i <= smp->sm_hashlen; i++) {
nhpp = &smp->sm_hash[i];
LIST_FOREACH(np, nhpp, n_hash)
- vprint(NULL, SMBTOV(np));
+ vprint("", SMBTOV(np));
}
return 0;
}
OpenPOWER on IntegriCloud