aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantin Belousov <kib@FreeBSD.org>2024-03-06 06:19:16 +0000
committerKonstantin Belousov <kib@FreeBSD.org>2024-03-06 07:25:02 +0000
commitebaf907114aa6bda49be4204185072571396bb0d (patch)
tree76fb24ebcb7b71d6b584079a6975f4f7c67665b3
parent89f4f91dbfdcabe65bc7476bc5f13dfb837870fe (diff)
posix_spawn.c: fix typo in comment
Sponsored by: The FreeBSD Foundation MFC after: 1 week
-rw-r--r--lib/libc/gen/posix_spawn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/gen/posix_spawn.c b/lib/libc/gen/posix_spawn.c
index 4726416f1d02..d405517ba68d 100644
--- a/lib/libc/gen/posix_spawn.c
+++ b/lib/libc/gen/posix_spawn.c
@@ -329,7 +329,7 @@ do_posix_spawn(pid_t *pid, const char *path,
#ifdef _RFORK_THREAD_STACK_SIZE
/*
* x86 stores the return address on the stack, so rfork(2) cannot work
- * as-is because the child would clobber the return address om the
+ * as-is because the child would clobber the return address of the
* parent. Because of this, we must use rfork_thread instead while
* almost every other arch stores the return address in a register.
*/