Commit d17c162c authored by Vincent Béron's avatar Vincent Béron Committed by Alexandre Julliard

Fix the declaration of pthread_mutexattr_gettype().

parent 21548cf0
......@@ -654,7 +654,7 @@ int __pthread_mutexattr_settype(pthread_mutexattr_t *attr, int kind)
}
strong_alias(__pthread_mutexattr_settype, pthread_mutexattr_settype);
int __pthread_mutexattr_gettype(pthread_mutexattr_t *attr, int *kind)
int __pthread_mutexattr_gettype(const pthread_mutexattr_t *attr, int *kind)
{
*kind = PTHREAD_MUTEX_RECURSIVE;
return 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment