Blame SOURCES/glibc-rh1505492-types-1.patch

147e83
commit 87ded0c382b835e5d7ca8b5e059a8a044a6c3976
147e83
Author: Andreas Krebbel <krebbel@linux.vnet.ibm.com>
147e83
Date:   Tue Jan 7 09:40:39 2014 +0100
147e83
147e83
    S/390: Remove __tls_get_addr argument cast.
147e83
147e83
diff --git a/sysdeps/s390/dl-tls.h b/sysdeps/s390/dl-tls.h
147e83
index 3afa3c89da2ad881..2d5c0807765e33ad 100644
147e83
--- a/sysdeps/s390/dl-tls.h
147e83
+++ b/sysdeps/s390/dl-tls.h
147e83
@@ -91,7 +91,7 @@ extern void *__tls_get_addr_internal (tls_index *ti);
147e83
    compiler will take care of setting up r12 only if itself issued the
147e83
    __tls_get_offset call.  */
147e83
 # define __TLS_GET_ADDR(__ti)					\
147e83
-  ({ (void *) __tls_get_addr_internal ((char *) (__ti))		\
147e83
+  ({ __tls_get_addr_internal (__ti)				\
147e83
       + (unsigned long) __builtin_thread_pointer (); })
147e83
 
147e83
 #endif