git: 5657f49ef33b - main - kern_umtx.c do_wait(): correct confusing indent
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 20 Jan 2023 21:37:45 UTC
The branch main has been updated by kib:
URL: https://cgit.FreeBSD.org/src/commit/?id=5657f49ef33b13934ccdc36e3990fdd71376baed
commit 5657f49ef33b13934ccdc36e3990fdd71376baed
Author: Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2023-01-20 21:32:27 +0000
Commit: Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2023-01-20 21:33:11 +0000
kern_umtx.c do_wait(): correct confusing indent
Sponsored by: The FreeBSD Foundation
MFC after: 3 days
---
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 75ce1dc43f81..86d644c835c7 100644
--- a/sys/kern/kern_umtx.c
+++ b/sys/kern/kern_umtx.c
@@ -1268,7 +1268,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)