git: bec15cbae4e9 - stable/14 - kern: Fix a typo in a source code comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 22 Feb 2026 12:13:09 UTC
The branch stable/14 has been updated by gbe:
URL: https://cgit.FreeBSD.org/src/commit/?id=bec15cbae4e9ec0abda7452af454b075674a8ccc
commit bec15cbae4e9ec0abda7452af454b075674a8ccc
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2026-02-08 11:59:37 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2026-02-22 12:12:44 +0000
kern: Fix a typo in a source code comment
- s/segement/segment/
(cherry picked from commit f87ab066722f3ffb19885ed501a7a136355340a2)
---
sys/kern/imgact_elf.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/kern/imgact_elf.c b/sys/kern/imgact_elf.c
index ea74c07cbc48..a71359a929fb 100644
--- a/sys/kern/imgact_elf.c
+++ b/sys/kern/imgact_elf.c
@@ -1962,7 +1962,7 @@ __elfN(puthdr)(struct thread *td, void *hdr, size_t hdrsize, int numsegs,
*/
phdr = (Elf_Phdr *)((char *)hdr + ehdr->e_phoff);
- /* The note segement. */
+ /* The note segment. */
phdr->p_type = PT_NOTE;
phdr->p_offset = hdrsize;
phdr->p_vaddr = 0;