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