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