summaryrefslogtreecommitdiffstats
path: root/c/src/tests/psxtests/psxhdrs/pthread19.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/tests/psxtests/psxhdrs/pthread19.c')
-rw-r--r--c/src/tests/psxtests/psxhdrs/pthread19.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/src/tests/psxtests/psxhdrs/pthread19.c b/c/src/tests/psxtests/psxhdrs/pthread19.c
index 87e3b609ec..0b6a595b78 100644
--- a/c/src/tests/psxtests/psxhdrs/pthread19.c
+++ b/c/src/tests/psxtests/psxhdrs/pthread19.c
@@ -23,7 +23,7 @@ void test( void )
{
pthread_attr_t attr;
struct sched_param param;
- int status;
+ int result;
- status = pthread_attr_setschedparam( &attr, &param );
+ result = pthread_attr_setschedparam( &attr, &param );
}