From 0109d950e685f1c5f6cef245a8b1bc47c9b6d94c Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Mon, 22 Jul 2013 13:57:02 -0400 Subject: 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. --- src/thread/pthread_mutexattr_settype.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/thread/pthread_mutexattr_settype.c') 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; } -- cgit v1.2.1