aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantin Belousov <kib@FreeBSD.org>2023-01-20 21:32:27 +0000
committerKonstantin Belousov <kib@FreeBSD.org>2023-01-20 21:33:11 +0000
commit5657f49ef33b13934ccdc36e3990fdd71376baed (patch)
treecfece966aef5e6144258c861cdfe9eaa254aa5e3
parent6f7b5d5d3c2e4704985723d5a23a2494050d8b6b (diff)
downloadsrc-5657f49ef33b13934ccdc36e3990fdd71376baed.tar.gz
src-5657f49ef33b13934ccdc36e3990fdd71376baed.zip
kern_umtx.c do_wait(): correct confusing indent
Sponsored by: The FreeBSD Foundation MFC after: 3 days
-rw-r--r--sys/kern/kern_umtx.c2
1 files changed, 1 insertions, 1 deletions
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)