don't call vprint with NULL.

This commit is contained in:
Poul-Henning Kamp 2005-02-10 12:06:34 +00:00
parent 87c045d5a2
commit 271c679c17

View File

@ -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;
}