The branch main has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=333b0490e3132bf8f1a0d974d8b2597caf765970
commit 333b0490e3132bf8f1a0d974d8b2597caf765970 Author: Gordon Bergling <g...@freebsd.org> AuthorDate: 2025-08-17 07:24:59 +0000 Commit: Gordon Bergling <g...@freebsd.org> CommitDate: 2025-08-17 07:24:59 +0000 libc: Fix a typo in a source code comment - s/aguments/arguments/ MFC after: 3 days --- lib/libc/i386/gen/makecontext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libc/i386/gen/makecontext.c b/lib/libc/i386/gen/makecontext.c index 7b4845ac6bee..9fedd8b99c47 100644 --- a/lib/libc/i386/gen/makecontext.c +++ b/lib/libc/i386/gen/makecontext.c @@ -124,7 +124,7 @@ __makecontext(ucontext_t *ucp, void (*start)(void), int argc, ...) /* * Setup the top of the stack with the user start routine - * followed by all of its aguments and the pointer to the + * followed by all of its arguments and the pointer to the * ucontext. We need to leave a spare spot at the top of * the stack because setcontext will move eip to the top * of the stack before returning.