about summary refs log tree commit diff
path: root/sysdeps/sh/nptl
diff options
context:
space:
mode:
authorKaz Kojima <kkojima@rr.iij4u.or.jp>2014-12-12 08:07:35 +0900
committerKaz Kojima <kkojima@rr.iij4u.or.jp>2014-12-12 08:07:35 +0900
commitf82c43af8aebc5a270c8be06055ee5a38063bac3 (patch)
treeb170df4817e1987db8ea7ed76ece81a27fe3dcc7 /sysdeps/sh/nptl
parentfc00cf7bcdf3367da105d86185411f7b7eced239 (diff)
downloadglibc-f82c43af8aebc5a270c8be06055ee5a38063bac3.tar.gz
glibc-f82c43af8aebc5a270c8be06055ee5a38063bac3.tar.xz
glibc-f82c43af8aebc5a270c8be06055ee5a38063bac3.zip
* Fix SH specific compiler warnings which are for integer-pointer
  type conversions without cast.
Diffstat (limited to 'sysdeps/sh/nptl')
-rw-r--r--sysdeps/sh/nptl/tls.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/sh/nptl/tls.h b/sysdeps/sh/nptl/tls.h
index 5a829756a8..446b2406c3 100644
--- a/sysdeps/sh/nptl/tls.h
+++ b/sysdeps/sh/nptl/tls.h
@@ -99,7 +99,7 @@ typedef struct
    special attention since 'errno' is not yet available and if the
    operation can cause a failure 'errno' must not be touched.  */
 # define TLS_INIT_TP(tcbp) \
-  ({ __asm __volatile ("ldc %0,gbr" : : "r" (tcbp)); 0; })
+  ({ __asm __volatile ("ldc %0,gbr" : : "r" (tcbp)); NULL; })
 
 # define TLS_DEFINE_INIT_TP(tp, pd) void *tp = (pd) + 1