remove some stray trailing space characters
[musl] / src / thread / pthread_attr_getstacksize.c
index 40bbf18..9575203 100644 (file)
@@ -1,7 +1,7 @@
 #include "pthread_impl.h"
 
-int pthread_attr_getstacksize(pthread_attr_t *a, size_t *size)
+int pthread_attr_getstacksize(const pthread_attr_t *a, size_t *size)
 {
-       *size = a->__stacksize + DEFAULT_STACK_SIZE;
+       *size = a->_a_stacksize + DEFAULT_STACK_SIZE;
        return 0;
 }