Add a missing file change from the VOP_GETATTR() argument axing.

This commit is contained in:
Attilio Rao 2008-08-28 18:00:20 +00:00
parent 855aaac7ac
commit 0b25211b11
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=182383

View File

@ -356,7 +356,7 @@ typedef struct vattr {
#define VOP_CLOSE(vp, f, c, o, cr) 0
#define VOP_PUTPAGE(vp, of, sz, fl, cr) 0
#define VOP_GETATTR(vp, vap, fl, cr) ((vap)->va_size = (vp)->v_size, 0)
#define VOP_GETATTR(vp, vap, fl) ((vap)->va_size = (vp)->v_size, 0)
#define VOP_FSYNC(vp, f, cr) fsync((vp)->v_fd)