git: 480d18c28f01 - stable/13 - linux(4): Fix a typo in a source code comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 19 Jul 2022 16:01:34 UTC
The branch stable/13 has been updated by gbe (doc committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=480d18c28f01bd3a4e13c92d7f9b0515d264e9d9
commit 480d18c28f01bd3a4e13c92d7f9b0515d264e9d9
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-07-16 11:39:17 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-07-19 15:59:57 +0000
linux(4): Fix a typo in a source code comment
- s/alredy/already/
(cherry picked from commit d3d3b76c1b614b54d255e4248c45f43b20d519b8)
---
sys/compat/linux/linux_signal.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/compat/linux/linux_signal.c b/sys/compat/linux/linux_signal.c
index a1bbfa2cfa07..09bcbcef4427 100644
--- a/sys/compat/linux/linux_signal.c
+++ b/sys/compat/linux/linux_signal.c
@@ -705,7 +705,7 @@ void
siginfo_to_lsiginfo(const siginfo_t *si, l_siginfo_t *lsi, l_int sig)
{
- /* sig alredy converted */
+ /* sig already converted */
lsi->lsi_signo = sig;
sicode_to_lsicode(sig, si->si_code, &lsi->lsi_code);