git: ce1e5d0d5e60 - main - Add a missing space in the arm64 sendsig
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 05 Jan 2022 12:40:31 UTC
The branch main has been updated by andrew: URL: https://cgit.FreeBSD.org/src/commit/?id=ce1e5d0d5e60a2e7db155d7c479f16249ea14f36 commit ce1e5d0d5e60a2e7db155d7c479f16249ea14f36 Author: Andrew Turner <andrew@FreeBSD.org> AuthorDate: 2022-01-05 12:38:54 +0000 Commit: Andrew Turner <andrew@FreeBSD.org> CommitDate: 2022-01-05 12:38:54 +0000 Add a missing space in the arm64 sendsig Sponsored by: The FreeBSD Foundation --- 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 715c41031c92..ee189de4b6e3 100644 --- a/sys/arm64/arm64/exec_machdep.c +++ b/sys/arm64/arm64/exec_machdep.c @@ -593,7 +593,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;