summaryrefslogtreecommitdiffstats
path: root/c/src/tests/psxtests/psxhdrs/pthread12.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/tests/psxtests/psxhdrs/pthread12.c')
-rw-r--r--c/src/tests/psxtests/psxhdrs/pthread12.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/src/tests/psxtests/psxhdrs/pthread12.c b/c/src/tests/psxtests/psxhdrs/pthread12.c
index c22d275ece..fd275597db 100644
--- a/c/src/tests/psxtests/psxhdrs/pthread12.c
+++ b/c/src/tests/psxtests/psxhdrs/pthread12.c
@@ -24,9 +24,9 @@ void test( void )
pthread_t thread;
int policy;
struct sched_param param;
- int status;
+ int result;
thread = 0;
- status = pthread_getschedparam( thread, &policy, &param );
+ result = pthread_getschedparam( thread, &policy, &param );
}