about summary refs log tree commit diff
path: root/src/thread/pthread_mutexattr_settype.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2013-07-22 13:57:02 -0400
committerRich Felker <dalias@aerifal.cx>2013-07-22 13:57:02 -0400
commit0109d950e685f1c5f6cef245a8b1bc47c9b6d94c (patch)
treea4048fa32a9e4337e524e0323cc5cc2e9ce8367d /src/thread/pthread_mutexattr_settype.c
parentc4dd0c98bae8e3583f68ba5b30db491055ab2322 (diff)
downloadmusl-0109d950e685f1c5f6cef245a8b1bc47c9b6d94c.tar.gz
musl-0109d950e685f1c5f6cef245a8b1bc47c9b6d94c.tar.xz
musl-0109d950e685f1c5f6cef245a8b1bc47c9b6d94c.zip
make pthread attribute types structs, even when they just have one field
this change is to get the right tags for C++ ABI matching. it should
have no other effects.
Diffstat (limited to 'src/thread/pthread_mutexattr_settype.c')
-rw-r--r--src/thread/pthread_mutexattr_settype.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread/pthread_mutexattr_settype.c b/src/thread/pthread_mutexattr_settype.c
index 4e85950e..cd7a80e3 100644
--- a/src/thread/pthread_mutexattr_settype.c
+++ b/src/thread/pthread_mutexattr_settype.c
@@ -3,6 +3,6 @@
 int pthread_mutexattr_settype(pthread_mutexattr_t *a, int type)
 {
 	if ((unsigned)type > 2) return EINVAL;
-	*a = (*a & ~3) | type;
+	a->__attr = (a->__attr & ~3) | type;
 	return 0;
 }