git: 193d55c4aace - stable/13 - Add a missing space in the arm64 sendsig
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 31 Jan 2022 11:32:49 UTC
The branch stable/13 has been updated by andrew: URL: https://cgit.FreeBSD.org/src/commit/?id=193d55c4aace959d7203d9f82472cd103bdf7ff7 commit 193d55c4aace959d7203d9f82472cd103bdf7ff7 Author: Andrew Turner <andrew@FreeBSD.org> AuthorDate: 2022-01-05 12:38:54 +0000 Commit: Andrew Turner <andrew@FreeBSD.org> CommitDate: 2022-01-31 10:05:47 +0000 Add a missing space in the arm64 sendsig Sponsored by: The FreeBSD Foundation (cherry picked from commit ce1e5d0d5e60a2e7db155d7c479f16249ea14f36) --- sys/arm64/arm64/exec_machdep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/arm64/arm64/exec_machdep.c b/sys/arm64/arm64/exec_machdep.c index 0766be0b6a1b..c4cf89071de1 100644 --- a/sys/arm64/arm64/exec_machdep.c +++ b/sys/arm64/arm64/exec_machdep.c @@ -595,7 +595,7 @@ sendsig(sig_t catcher, ksiginfo_t *ksi, sigset_t *mask) sigexit(td, SIGILL); } - tf->tf_x[0]= sig; + tf->tf_x[0] = sig; tf->tf_x[1] = (register_t)&fp->sf_si; tf->tf_x[2] = (register_t)&fp->sf_uc;