summaryrefslogtreecommitdiff
path: root/linuxthreads
diff options
context:
space:
mode:
Diffstat (limited to 'linuxthreads')
-rw-r--r--linuxthreads/ChangeLog4
-rw-r--r--linuxthreads/sysdeps/ia64/tls.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog
index 75dea58638..83f6a8182a 100644
--- a/linuxthreads/ChangeLog
+++ b/linuxthreads/ChangeLog
@@ -1,3 +1,7 @@
+2004-04-16 Andreas Schwab <schwab@suse.de>
+
+ * sysdeps/ia64/tls.h (INIT_SYSINFO): Cast dl_sysinfo to void*.
+
2004-07-05 Jakub Jelinek <jakub@redhat.com>
* sysdeps/s390/pspinlock.c (__pthread_spin_lock,
diff --git a/linuxthreads/sysdeps/ia64/tls.h b/linuxthreads/sysdeps/ia64/tls.h
index 1c2388c1ed..3ec2eda783 100644
--- a/linuxthreads/sysdeps/ia64/tls.h
+++ b/linuxthreads/sysdeps/ia64/tls.h
@@ -83,7 +83,7 @@ typedef struct
#if defined NEED_DL_SYSINFO
# define INIT_SYSINFO \
- (((tcbhead_t *)__thread_self)->private = GLRO(dl_sysinfo))
+ (((tcbhead_t *) __thread_self)->private = (void *) GLRO(dl_sysinfo))
#else
# define INIT_SYSINFO 0
#endif