summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAustin Foxley <austinf@cetoncorp.com>2009-10-16 11:50:51 -0700
committerAustin Foxley <austinf@cetoncorp.com>2009-10-16 11:50:51 -0700
commit3a1636dfb6d5bcd3780a4b7d655ffde241615489 (patch)
tree55407b99eef3dfee6313f51cabf232ffe0358890
parent22734d860c4189b74c40f8f4f7490d4a7adb2c04 (diff)
downloaduClibc-alpine-3a1636dfb6d5bcd3780a4b7d655ffde241615489.tar.bz2
uClibc-alpine-3a1636dfb6d5bcd3780a4b7d655ffde241615489.tar.xz
ldso: fixup missed variable rename ( tls_tpnt -> tpntp )
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
-rw-r--r--ldso/ldso/dl-hash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ldso/ldso/dl-hash.c b/ldso/ldso/dl-hash.c
index 5f90a544b..6d54f37b9 100644
--- a/ldso/ldso/dl-hash.c
+++ b/ldso/ldso/dl-hash.c
@@ -337,8 +337,8 @@ char *_dl_lookup_hash(const char *name, struct dyn_elf *rpnt, struct elf_resolve
/* At this point we have found the requested symbol, do binding */
#if USE_TLS
if (ELF_ST_TYPE(sym->st_info) == STT_TLS) {
- _dl_assert(tls_tpnt != NULL);
- *tls_tpnt = tpnt;
+ _dl_assert(tpntp != NULL);
+ *tpntp = tpnt;
return (char *)sym->st_value;
}