The branch main has been updated by imp:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=33afe704bf1797b3720c4d45e7a8dcf1f0794110

commit 33afe704bf1797b3720c4d45e7a8dcf1f0794110
Author:     Elyes Haouas <[email protected]>
AuthorDate: 2024-04-11 17:27:29 +0000
Commit:     Warner Losh <[email protected]>
CommitDate: 2024-04-11 17:28:27 +0000

    sigtramp: Fix typo
    
    Signed-off-by: Elyes Haouas <[email protected]>
    Reviewed by: imp
    Pull Request: https://github.com/freebsd/freebsd-src/pull/885
---
 sys/amd64/amd64/sigtramp.S | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/amd64/amd64/sigtramp.S b/sys/amd64/amd64/sigtramp.S
index 3ab9e32ca520..4676d5f67650 100644
--- a/sys/amd64/amd64/sigtramp.S
+++ b/sys/amd64/amd64/sigtramp.S
@@ -91,7 +91,7 @@ ENTRY(__vdso_sigcode)
        .cfi_def_cfa    %rsp, 8
        movq    $SYS_sigreturn,%rax
        syscall                         /* enter kernel with args */
-0:     hlt                             /* trap priviliged instruction */
+0:     hlt                             /* trap privileged instruction */
        jmp     0b
        .cfi_endproc
 END(__vdso_sigcode)

Reply via email to