From 0d86e637f6d5f961ad397f350458b57ef662c895 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Thu, 31 Oct 2013 18:41:52 -0700 Subject: [PATCH] Fix build. Change-Id: If09775ab21fef5b1df0222f07443a55190ae7a1c --- ndk/sources/android/libportable/arch-mips/pthread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ndk/sources/android/libportable/arch-mips/pthread.c b/ndk/sources/android/libportable/arch-mips/pthread.c index 5b75623c9..f6c3037da 100644 --- a/ndk/sources/android/libportable/arch-mips/pthread.c +++ b/ndk/sources/android/libportable/arch-mips/pthread.c @@ -114,7 +114,7 @@ PTHREAD_WRAPPER(pthread_attr_getguardsize, (pthread_attr_t const *attr, size_t * PTHREAD_WRAPPER(pthread_attr_setscope, (pthread_attr_t *attr, int scope), (attr, scope), "(attr:%p, scope:%d)"); -PTHREAD_WRAPPER(pthread_attr_getscope, (pthread_attr_t const *attr), (attr), "(attr:%p)"); +PTHREAD_WRAPPER(pthread_attr_getscope, (pthread_attr_t const *attr, int* scope), (attr, scope), "(attr:%p, scope:%p)"); PTHREAD_WRAPPER(pthread_getattr_np, (pthread_t thid, pthread_attr_t *attr), (thid, attr), "(thid:%lx, attr:%p)");