summaryrefslogtreecommitdiffstats
path: root/c/src/tests/psxtests/psxhdrs/pthread15.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/tests/psxtests/psxhdrs/pthread15.c')
-rw-r--r--c/src/tests/psxtests/psxhdrs/pthread15.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/src/tests/psxtests/psxhdrs/pthread15.c b/c/src/tests/psxtests/psxhdrs/pthread15.c
index 2ae68f79c6..150ae28ebf 100644
--- a/c/src/tests/psxtests/psxhdrs/pthread15.c
+++ b/c/src/tests/psxtests/psxhdrs/pthread15.c
@@ -23,10 +23,10 @@ void test( void )
{
pthread_attr_t attr;
int inheritsched;
- int status;
+ int result;
inheritsched = PTHREAD_INHERIT_SCHED;
inheritsched = PTHREAD_EXPLICIT_SCHED;
- status = pthread_attr_setinheritsched( &attr, inheritsched );
+ result = pthread_attr_setinheritsched( &attr, inheritsched );
}