summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxhdrs/pthread27.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psxhdrs/pthread27.c')
-rw-r--r--testsuites/psxtests/psxhdrs/pthread27.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/psxtests/psxhdrs/pthread27.c b/testsuites/psxtests/psxhdrs/pthread27.c
index eec4e4bf7b..6f349aec86 100644
--- a/testsuites/psxtests/psxhdrs/pthread27.c
+++ b/testsuites/psxtests/psxhdrs/pthread27.c
@@ -26,7 +26,7 @@ void init_routine( void )
void test( void )
{
pthread_once_t once_control = PTHREAD_ONCE_INIT;
- int status;
+ int result;
- status = pthread_once( &once_control, init_routine );
+ result = pthread_once( &once_control, init_routine );
}