mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 09:11:07 -04:00
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:
parent
1091fb52c1
commit
abbc538d9a
1 changed files with 2 additions and 2 deletions
|
|
@ -1547,8 +1547,8 @@ retry:
|
|||
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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue