diff options
author | phk <phk@FreeBSD.org> | 2005-02-10 12:06:34 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2005-02-10 12:06:34 +0000 |
commit | 1ac5aa5859dbdbcb4b67b1de550f859895ee1923 (patch) | |
tree | d6e079596d15dba3fd1513fc068815608f7040ad /sys/fs/smbfs | |
parent | b37bc365fbf112cdbce48972c9e7331fdd05a919 (diff) | |
download | FreeBSD-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.c | 2 |
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; } |