git: ae7a5bb2ba11 - stable/13 - kern_umtx.c do_wait(): correct confusing indent
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 22 Jan 2023 09:19:26 UTC
The branch stable/13 has been updated by kib:
URL: https://cgit.FreeBSD.org/src/commit/?id=ae7a5bb2ba11abd25db47fcd6ed6b4226e96501d
commit ae7a5bb2ba11abd25db47fcd6ed6b4226e96501d
Author: Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2023-01-20 21:32:27 +0000
Commit: Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2023-01-22 09:18:10 +0000
kern_umtx.c do_wait(): correct confusing indent
(cherry picked from commit 5657f49ef33b13934ccdc36e3990fdd71376baed)
---
sys/kern/kern_umtx.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/kern/kern_umtx.c b/sys/kern/kern_umtx.c
index f0129e96a294..dca7bc34700a 100644
--- a/sys/kern/kern_umtx.c
+++ b/sys/kern/kern_umtx.c
@@ -1269,7 +1269,7 @@ do_wait(struct thread *td, void *addr, u_long id,
uq = td->td_umtxq;
if ((error = umtx_key_get(addr, TYPE_SIMPLE_WAIT,
- is_private ? THREAD_SHARE : AUTO_SHARE, &uq->uq_key)) != 0)
+ is_private ? THREAD_SHARE : AUTO_SHARE, &uq->uq_key)) != 0)
return (error);
if (timeout != NULL)