2004-04-16  Andreas Schwab  <schwab@suse.de>

	* sysdeps/ia64/tls.h (INIT_SYSINFO): Cast dl_sysinfo to void*.
This commit is contained in:
Ulrich Drepper 2004-07-08 21:23:23 +00:00
parent 259fc9c52f
commit ece385dbb8
2 changed files with 5 additions and 1 deletions

View File

@ -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,

View File

@ -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