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.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/testsuites/psxtests/psxhdrs/pthread13.c b/testsuites/psxtests/psxhdrs/pthread13.c
index 94433203ef..23747f41ab 100644
--- a/testsuites/psxtests/psxhdrs/pthread13.c
+++ b/testsuites/psxtests/psxhdrs/pthread13.c
@@ -22,11 +22,11 @@
void test( void )
{
pthread_attr_t attr;
- int contentsionscope;
+ int contentionscope;
int status;
- contentsionscope = PTHREAD_SCOPE_SYSTEM;
- contentsionscope = PTHREAD_SCOPE_PROCESS;
+ contentionscope = PTHREAD_SCOPE_SYSTEM;
+ contentionscope = PTHREAD_SCOPE_PROCESS;
- status = pthread_attr_setscope( &attr, contentsionscope );
+ status = pthread_attr_setscope( &attr, contentionscope );
}