mtx: fix whitespace damage in _mtx_trylock_flags_
MFC after: 3 days
This commit is contained in:
parent
bc8448b7c7
commit
bbc11bbfe1
@ -410,10 +410,10 @@ _mtx_trylock_flags_(volatile uintptr_t *c, int opts, const char *file, int line)
|
||||
if (v == tid &&
|
||||
((m->lock_object.lo_flags & LO_RECURSABLE) != 0 ||
|
||||
(opts & MTX_RECURSE) != 0)) {
|
||||
m->mtx_recurse++;
|
||||
atomic_set_ptr(&m->mtx_lock, MTX_RECURSED);
|
||||
recursed = true;
|
||||
break;
|
||||
m->mtx_recurse++;
|
||||
atomic_set_ptr(&m->mtx_lock, MTX_RECURSED);
|
||||
recursed = true;
|
||||
break;
|
||||
}
|
||||
rval = 0;
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user