summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxhdrs/pthread23.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psxhdrs/pthread23.c')
-rw-r--r--testsuites/psxtests/psxhdrs/pthread23.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/psxtests/psxhdrs/pthread23.c b/testsuites/psxtests/psxhdrs/pthread23.c
index c02c6f76d7..db72cff1dd 100644
--- a/testsuites/psxtests/psxhdrs/pthread23.c
+++ b/testsuites/psxtests/psxhdrs/pthread23.c
@@ -24,7 +24,7 @@ void test( void )
pthread_t thread = 0;
int policy;
struct sched_param param;
- int status;
+ int result;
- status = pthread_getschedparam( thread, &policy, &param );
+ result = pthread_getschedparam( thread, &policy, &param );
}