git: 34243c00385b - stable/12 - nlist(3): Fix a common typo in a source code comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 10 Jun 2022 12:46:10 UTC
The branch stable/12 has been updated by gbe (doc committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=34243c00385bc01f18f44b975c541697e03b23b1
commit 34243c00385bc01f18f44b975c541697e03b23b1
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-06-05 07:51:57 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-06-10 12:42:54 +0000
nlist(3): Fix a common typo in a source code comment
- s/independant/independent/
(cherry picked from commit 565405095b88a00df786614cdaabfdd3de1148ec)
---
lib/libc/gen/nlist.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/libc/gen/nlist.c b/lib/libc/gen/nlist.c
index 38fb4be3a071..b6bd4772521b 100644
--- a/lib/libc/gen/nlist.c
+++ b/lib/libc/gen/nlist.c
@@ -215,7 +215,7 @@ __elf_is_okay__(Elf_Ehdr *ehdr)
* We need to check magic, class size, endianess,
* and version before we look at the rest of the
* Elf_Ehdr structure. These few elements are
- * represented in a machine independant fashion.
+ * represented in a machine independent fashion.
*/
if (IS_ELF(*ehdr) &&
ehdr->e_ident[EI_CLASS] == ELF_TARG_CLASS &&