aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGordon Bergling <gbe@FreeBSD.org>2022-06-05 07:51:57 +0000
committerGordon Bergling <gbe@FreeBSD.org>2022-06-10 12:25:39 +0000
commit634412571c533bf9bb5bc24d4f3d510b2af13587 (patch)
treec95ad3101b5080728e127be39954fc108fda832e
parentac23f79e43804625cd21d8a1f50c13563721266f (diff)
downloadsrc-634412571c533bf9bb5bc24d4f3d510b2af13587.tar.gz
src-634412571c533bf9bb5bc24d4f3d510b2af13587.zip
nlist(3): Fix a common typo in a source code comment
- s/independant/independent/ (cherry picked from commit 565405095b88a00df786614cdaabfdd3de1148ec)
-rw-r--r--lib/libc/gen/nlist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/gen/nlist.c b/lib/libc/gen/nlist.c
index 3d69157904a4..c30fa4dbaca2 100644
--- a/lib/libc/gen/nlist.c
+++ b/lib/libc/gen/nlist.c
@@ -106,7 +106,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 &&