mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix a precedence bug. ! has higher precedence than &.
This commit is contained in:
parent
46ae634c56
commit
1681b00a79
1 changed files with 1 additions and 1 deletions
|
|
@ -258,7 +258,7 @@ debuglockmgr(lkp, flags, interlkp, p, name, file, line)
|
|||
lockflags = LK_HAVE_EXCL;
|
||||
if (p) {
|
||||
PROC_LOCK(p);
|
||||
if (!p->p_flag & P_DEADLKTREAT) {
|
||||
if (!(p->p_flag & P_DEADLKTREAT)) {
|
||||
lockflags |= LK_WANT_EXCL |
|
||||
LK_WANT_UPGRADE;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue