summaryrefslogtreecommitdiffstats
path: root/c/src/tests/psxtests/psxhdrs/pthread21.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/tests/psxtests/psxhdrs/pthread21.c')
-rw-r--r--c/src/tests/psxtests/psxhdrs/pthread21.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/src/tests/psxtests/psxhdrs/pthread21.c b/c/src/tests/psxtests/psxhdrs/pthread21.c
index 6bf46247f5..6b4bff7983 100644
--- a/c/src/tests/psxtests/psxhdrs/pthread21.c
+++ b/c/src/tests/psxtests/psxhdrs/pthread21.c
@@ -22,8 +22,8 @@
void test( void )
{
pthread_t thread;
- int status;
+ int result;
thread = 0;
- status = pthread_detach( thread );
+ result = pthread_detach( thread );
}