Fix typo: pointers are not boolean in style(9).

This commit is contained in:
Poul-Henning Kamp 2005-03-15 10:01:14 +00:00
parent 0f64ffc025
commit 40d04a26a0

View File

@ -514,7 +514,7 @@ hpfs_vget(
hp->h_devvp = hpmp->hpm_devvp;
error = vfs_hash_insert(vp, ino, flags, curthread, vpp);
if (error || *vpp) {
if (error || *vpp != NULL) {
vput(vp);
return (error);
}