summaryrefslogtreecommitdiff
path: root/ldso/libdl
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2011-05-10 21:22:25 +0200
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2011-05-10 21:22:25 +0200
commitbfbab32be6d74de0717c7f5fbdd90edfd2839169 (patch)
tree439001b1ee053ba7ff533a774d7fb8bdc825a985 /ldso/libdl
parente48bd60ce9a70d190acfee7db98c0f163a2c5fdb (diff)
ldso: commentary typo fix
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'ldso/libdl')
-rw-r--r--ldso/libdl/libdl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ldso/libdl/libdl.c b/ldso/libdl/libdl.c
index b80495e71..52c77b00a 100644
--- a/ldso/libdl/libdl.c
+++ b/ldso/libdl/libdl.c
@@ -672,7 +672,7 @@ void *dlsym(void *vhandle, const char *name)
#if defined(USE_TLS) && USE_TLS && defined SHARED
if (sym_ref.tpnt) {
/* The found symbol is a thread-local storage variable.
- Return the address for to the current thread. */
+ Return its address for the current thread. */
ret = _dl_tls_symaddr ((struct link_map *)sym_ref.tpnt, (Elf32_Addr)ret);
}
#endif