vfs: fix whitespace damage in r312600

While here wrap the previously overly long line so that it fits 80 chars.
This commit is contained in:
Mateusz Guzik 2017-01-21 18:56:58 +00:00
parent 1091fb52c1
commit abbc538d9a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=312601

View File

@ -1547,8 +1547,8 @@ _vn_lock(struct vnode *vp, int flags, char *file, int line)
error = VOP_LOCK1(vp, flags, file, line);
flags &= ~LK_INTERLOCK; /* Interlock is always dropped. */
KASSERT((flags & LK_RETRY) == 0 || error == 0,
("LK_RETRY set with incompatible flags (0x%x) or an error occurred (%d)",
flags, error));
("LK_RETRY set with incompatible flags (0x%x) or "
" an error occurred (%d)", flags, error));
if (flags & LK_RETRY) {
if ((error != 0))
goto retry;