1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-28 16:43:09 +00:00

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
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=143623

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