summaryrefslogtreecommitdiffstats
path: root/c/src/tests/psxtests/psxhdrs/pthread28.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/tests/psxtests/psxhdrs/pthread28.c')
-rw-r--r--c/src/tests/psxtests/psxhdrs/pthread28.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/src/tests/psxtests/psxhdrs/pthread28.c b/c/src/tests/psxtests/psxhdrs/pthread28.c
index 3980030edd..0207082e16 100644
--- a/c/src/tests/psxtests/psxhdrs/pthread28.c
+++ b/c/src/tests/psxtests/psxhdrs/pthread28.c
@@ -26,8 +26,8 @@ void init_routine( void )
void test( void )
{
pthread_t thread;
- int status;
+ int result;
thread = 0;
- status = pthread_cancel( thread );
+ result = pthread_cancel( thread );
}