summaryrefslogtreecommitdiffstats
path: root/c/src/tests/psxtests/psxhdrs/pthread30.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/tests/psxtests/psxhdrs/pthread30.c')
-rw-r--r--c/src/tests/psxtests/psxhdrs/pthread30.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/src/tests/psxtests/psxhdrs/pthread30.c b/c/src/tests/psxtests/psxhdrs/pthread30.c
index 169f95c64b..0d92f8adec 100644
--- a/c/src/tests/psxtests/psxhdrs/pthread30.c
+++ b/c/src/tests/psxtests/psxhdrs/pthread30.c
@@ -27,10 +27,10 @@ void test( void )
{
int type;
int oldtype;
- int status;
+ int result;
type = PTHREAD_CANCEL_DEFERRED;
type = PTHREAD_CANCEL_ASYNCHRONOUS;
- status = pthread_setcanceltype( type, &oldtype );
+ result = pthread_setcanceltype( type, &oldtype );
}