diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2015-08-22 20:41:31 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2015-08-22 20:49:34 +0200 |
commit | 33e3dbe62c420cc1cdee09d60735d20b5eff9a3d (patch) | |
tree | 84eafa6b5fb1664b6813caab12977a40aff8f6c7 /libpthread/nptl/sysdeps/pthread/bits/libc-lock.h | |
parent | 23e96d89b6ab0de3e857a865439b6e643617d0cf (diff) |
quieten compile warnings
Sync with glibc, quietens gcc warnings.
Diffstat (limited to 'libpthread/nptl/sysdeps/pthread/bits/libc-lock.h')
-rw-r--r-- | libpthread/nptl/sysdeps/pthread/bits/libc-lock.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpthread/nptl/sysdeps/pthread/bits/libc-lock.h b/libpthread/nptl/sysdeps/pthread/bits/libc-lock.h index 4df507b84..633021ab1 100644 --- a/libpthread/nptl/sysdeps/pthread/bits/libc-lock.h +++ b/libpthread/nptl/sysdeps/pthread/bits/libc-lock.h @@ -171,7 +171,7 @@ typedef pthread_key_t __libc_key_t; /* Initialize the named lock variable, leaving it in a consistent, unlocked state. */ #if defined _LIBC && (!defined NOT_IN_libc || defined IS_IN_libpthread) -# define __libc_lock_init(NAME) ((NAME) = LLL_LOCK_INITIALIZER, 0) +# define __libc_lock_init(NAME) ((void)((NAME) = LLL_LOCK_INITIALIZER)) #else # define __libc_lock_init(NAME) \ __libc_maybe_call (__pthread_mutex_init, (&(NAME), NULL), 0) |