diff options
author | Ulrich Drepper <drepper@redhat.com> | 2005-01-12 02:41:50 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2005-01-12 02:41:50 +0000 |
commit | cac7d7f9a11615e2606a89241d5044a3004e5ea2 (patch) | |
tree | 5df0c4a64930600dd1c334bd26b3e1e17b0cefa7 /sysdeps/alpha | |
parent | e9c3f06f2863fc115f55048a8cd3e9f1a4f2eeb6 (diff) | |
download | glibc-cac7d7f9a11615e2606a89241d5044a3004e5ea2.tar glibc-cac7d7f9a11615e2606a89241d5044a3004e5ea2.tar.gz glibc-cac7d7f9a11615e2606a89241d5044a3004e5ea2.tar.bz2 glibc-cac7d7f9a11615e2606a89241d5044a3004e5ea2.zip |
(__tls_get_addr): Updated for dtv_t union.
Diffstat (limited to 'sysdeps/alpha')
-rw-r--r-- | sysdeps/alpha/libc-tls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/alpha/libc-tls.c b/sysdeps/alpha/libc-tls.c index 434d5d9313..a3b68e928f 100644 --- a/sysdeps/alpha/libc-tls.c +++ b/sysdeps/alpha/libc-tls.c @@ -31,7 +31,7 @@ void * __tls_get_addr (tls_index *ti) { dtv_t *dtv = THREAD_DTV (); - return (char *) dtv[1].pointer + ti->ti_offset; + return (char *) dtv[1].pointer.val + ti->ti_offset; } #endif |