summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxhdrs/pthread17.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psxhdrs/pthread17.c')
-rw-r--r--testsuites/psxtests/psxhdrs/pthread17.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/psxtests/psxhdrs/pthread17.c b/testsuites/psxtests/psxhdrs/pthread17.c
index 7928ffc3ae..88f1c95e0c 100644
--- a/testsuites/psxtests/psxhdrs/pthread17.c
+++ b/testsuites/psxtests/psxhdrs/pthread17.c
@@ -23,11 +23,11 @@ void test( void )
{
pthread_attr_t attr;
int policy;
- int status;
+ int result;
policy = SCHED_FIFO;
policy = SCHED_RR;
policy = SCHED_OTHER;
- status = pthread_attr_setschedpolicy( &attr, policy );
+ result = pthread_attr_setschedpolicy( &attr, policy );
}