mirror of
https://github.com/opnsense/src.git
synced 2026-03-18 00:25:50 -04:00
don't call vprint with NULL.
This commit is contained in:
parent
87c045d5a2
commit
271c679c17
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue