summaryrefslogtreecommitdiff
path: root/sysdeps/mach/hurd/htl/pt-mutex-transfer-np.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/mach/hurd/htl/pt-mutex-transfer-np.c')
-rw-r--r--sysdeps/mach/hurd/htl/pt-mutex-transfer-np.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/mach/hurd/htl/pt-mutex-transfer-np.c b/sysdeps/mach/hurd/htl/pt-mutex-transfer-np.c
index 328bb1c315..7d1054c7b5 100644
--- a/sysdeps/mach/hurd/htl/pt-mutex-transfer-np.c
+++ b/sysdeps/mach/hurd/htl/pt-mutex-transfer-np.c
@@ -58,8 +58,8 @@ __pthread_mutex_transfer_np (pthread_mutex_t *mtxp, pthread_t th)
/* Note that this can be used to transfer an inconsistent
* mutex as well. The new owner will still have the same
* flags as the original. */
- if (mtxp->__owner_id != self->thread ||
- (int) (mtxp->__lock & LLL_OWNER_MASK) != __getpid ())
+ if (mtxp->__owner_id != self->thread
+ || (int) (mtxp->__lock & LLL_OWNER_MASK) != __getpid ())
ret = EPERM;
else
mtxp->__owner_id = pt->thread;