summaryrefslogtreecommitdiff
path: root/libpthread/nptl/sysdeps/pthread/bits/stdio-lock.h
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2015-08-22 20:41:31 +0200
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2015-08-22 20:49:34 +0200
commit33e3dbe62c420cc1cdee09d60735d20b5eff9a3d (patch)
tree84eafa6b5fb1664b6813caab12977a40aff8f6c7 /libpthread/nptl/sysdeps/pthread/bits/stdio-lock.h
parent23e96d89b6ab0de3e857a865439b6e643617d0cf (diff)
quieten compile warnings
Sync with glibc, quietens gcc warnings.
Diffstat (limited to 'libpthread/nptl/sysdeps/pthread/bits/stdio-lock.h')
-rw-r--r--libpthread/nptl/sysdeps/pthread/bits/stdio-lock.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpthread/nptl/sysdeps/pthread/bits/stdio-lock.h b/libpthread/nptl/sysdeps/pthread/bits/stdio-lock.h
index 5ad5d953e..ae39b87f4 100644
--- a/libpthread/nptl/sysdeps/pthread/bits/stdio-lock.h
+++ b/libpthread/nptl/sysdeps/pthread/bits/stdio-lock.h
@@ -31,7 +31,7 @@ typedef struct { int lock; int cnt; void *owner; } _IO_lock_t;
#define _IO_lock_initializer { LLL_LOCK_INITIALIZER, 0, NULL }
#define _IO_lock_init(_name) \
- ((_name) = (_IO_lock_t) _IO_lock_initializer , 0)
+ ((void) ((_name) = (_IO_lock_t) _IO_lock_initializer))
#define _IO_lock_fini(_name) \
((void) 0)