summaryrefslogtreecommitdiffstats
path: root/c/src/tests/psxtests/psxhdrs/pthread27.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-05-23 19:31:54 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-05-23 19:31:54 +0000
commit02bfc5682e6ae08275802375736e085d4e9ad753 (patch)
tree6d61d57199b24ddf7f199637decdba6c438d8c41 /c/src/tests/psxtests/psxhdrs/pthread27.c
parentnew files (diff)
downloadrtems-02bfc5682e6ae08275802375736e085d4e9ad753.tar.bz2
cleanup status vs. result
Diffstat (limited to 'c/src/tests/psxtests/psxhdrs/pthread27.c')
-rw-r--r--c/src/tests/psxtests/psxhdrs/pthread27.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/src/tests/psxtests/psxhdrs/pthread27.c b/c/src/tests/psxtests/psxhdrs/pthread27.c
index eec4e4bf7b..6f349aec86 100644
--- a/c/src/tests/psxtests/psxhdrs/pthread27.c
+++ b/c/src/tests/psxtests/psxhdrs/pthread27.c
@@ -26,7 +26,7 @@ void init_routine( void )
void test( void )
{
pthread_once_t once_control = PTHREAD_ONCE_INIT;
- int status;
+ int result;
- status = pthread_once( &once_control, init_routine );
+ result = pthread_once( &once_control, init_routine );
}