From: Ulrich Drepper Date: Thu, 8 Jul 2004 21:23:23 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/fedora-base~334 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ece385dbb8601ce09ac1762c9df7b8e37220794b;p=thirdparty%2Fglibc.git Update. 2004-04-16 Andreas Schwab * sysdeps/ia64/tls.h (INIT_SYSINFO): Cast dl_sysinfo to void*. --- diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index 75dea586381..83f6a8182aa 100644 --- a/linuxthreads/ChangeLog +++ b/linuxthreads/ChangeLog @@ -1,3 +1,7 @@ +2004-04-16 Andreas Schwab + + * sysdeps/ia64/tls.h (INIT_SYSINFO): Cast dl_sysinfo to void*. + 2004-07-05 Jakub Jelinek * sysdeps/s390/pspinlock.c (__pthread_spin_lock, diff --git a/linuxthreads/sysdeps/ia64/tls.h b/linuxthreads/sysdeps/ia64/tls.h index 1c2388c1ed3..3ec2eda7837 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