about summary refs log tree commit diff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2004-07-08 21:23:23 +0000
committerUlrich Drepper <drepper@redhat.com>2004-07-08 21:23:23 +0000
commitece385dbb8601ce09ac1762c9df7b8e37220794b (patch)
tree5e6bfe31c9bad343856a7a50eaf314c22da35435
parent259fc9c52ff3495e2db9b41eca8c30dbc245ca55 (diff)
downloadglibc-ece385dbb8601ce09ac1762c9df7b8e37220794b.tar.gz
glibc-ece385dbb8601ce09ac1762c9df7b8e37220794b.tar.xz
glibc-ece385dbb8601ce09ac1762c9df7b8e37220794b.zip
Update.
2004-04-16  Andreas Schwab  <schwab@suse.de>

	* sysdeps/ia64/tls.h (INIT_SYSINFO): Cast dl_sysinfo to void*.
-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