mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Remove extra ; at end of if().
Found by: bz
This commit is contained in:
parent
43ce1c7762
commit
2d8dfb2836
1 changed files with 1 additions and 1 deletions
|
|
@ -2372,7 +2372,7 @@ vn_printf(struct vnode *vp, const char *fmt, ...)
|
|||
printf(" flags (%s)\n", buf + 1);
|
||||
if (mtx_owned(VI_MTX(vp)))
|
||||
printf(" VI_LOCKed");
|
||||
if (vp->v_object != NULL);
|
||||
if (vp->v_object != NULL)
|
||||
printf(" v_object %p ref %d pages %d\n",
|
||||
vp->v_object, vp->v_object->ref_count,
|
||||
vp->v_object->resident_page_count);
|
||||
|
|
|
|||
Loading…
Reference in a new issue