summaryrefslogtreecommitdiffstats
path: root/c/src/tests/psxtests/psxhdrs/pthread13.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/tests/psxtests/psxhdrs/pthread13.c')
-rw-r--r--c/src/tests/psxtests/psxhdrs/pthread13.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/src/tests/psxtests/psxhdrs/pthread13.c b/c/src/tests/psxtests/psxhdrs/pthread13.c
index 23747f41ab..9800b3992a 100644
--- a/c/src/tests/psxtests/psxhdrs/pthread13.c
+++ b/c/src/tests/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 );
}