summaryrefslogtreecommitdiff
path: root/ldso/dlstart.c
diff options
context:
space:
mode:
authorJ. Neuschäfer <j.neuschaefer@gmx.net>2024-10-23 14:46:39 +0200
committerRich Felker <dalias@aerifal.cx>2025-06-13 14:30:35 -0400
commit18289e5dea03f46dbb2315bf51a261d1f9ebe3ef (patch)
tree4f497aad244f88599f0d76927db2c5a97e9aaa94 /ldso/dlstart.c
parent86373b4999bfd9a9379bc4a3ca877b1c80a2a340 (diff)
downloadmusl-18289e5dea03f46dbb2315bf51a261d1f9ebe3ef.tar.gz
ldso: fix typo in comment
Diffstat (limited to 'ldso/dlstart.c')
-rw-r--r--ldso/dlstart.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ldso/dlstart.c b/ldso/dlstart.c
index 259f5e18..4aac42bc 100644
--- a/ldso/dlstart.c
+++ b/ldso/dlstart.c
@@ -45,7 +45,7 @@ hidden void _dlstart_c(size_t *sp, size_t *dynv)
/* If dynv is null, the entry point was started from loader
* that is not fdpic-aware. We can assume normal fixed-
* displacement ELF loading was performed, but when ldso was
- * run as a command, finding the Ehdr is a heursitic: we
+ * run as a command, finding the Ehdr is a heuristic: we
* have to assume Phdrs start in the first 4k of the file. */
base = aux[AT_BASE];
if (!base) base = aux[AT_PHDR] & -4096;