summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxhdrs/pthread13.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psxhdrs/pthread13.c')
-rw-r--r--testsuites/psxtests/psxhdrs/pthread13.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/psxtests/psxhdrs/pthread13.c b/testsuites/psxtests/psxhdrs/pthread13.c
index 23747f41ab..9800b3992a 100644
--- a/testsuites/psxtests/psxhdrs/pthread13.c
+++ b/testsuites/psxtests/psxhdrs/pthread13.c
@@ -23,10 +23,10 @@ void test( void )
{
pthread_attr_t attr;
int contentionscope;
- int status;
+ int result;
contentionscope = PTHREAD_SCOPE_SYSTEM;
contentionscope = PTHREAD_SCOPE_PROCESS;
- status = pthread_attr_setscope( &attr, contentionscope );
+ result = pthread_attr_setscope( &attr, contentionscope );
}