summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxhdrs/pthread13.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 /testsuites/psxtests/psxhdrs/pthread13.c
parentnew files (diff)
downloadrtems-02bfc5682e6ae08275802375736e085d4e9ad753.tar.bz2
cleanup status vs. result
Diffstat (limited to 'testsuites/psxtests/psxhdrs/pthread13.c')
-rw-r--r--testsuites/psxtests/psxhdrs/pthread13.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/psxtests/psxhdrs/pthread13.c b/testsuites/psxtests/psxhdrs/pthread13.c
index 23747f41ab..9800b3992a 100644
--- a/testsuites/psxtests/psxhdrs/pthread13.c
+++ b/testsuites/psxtests/psxhdrs/pthread13.c
@@ -23,10 +23,10 @@ void test( void )
{
pthread_attr_t attr;
int contentionscope;
- int status;
+ int result;
contentionscope = PTHREAD_SCOPE_SYSTEM;
contentionscope = PTHREAD_SCOPE_PROCESS;
- status = pthread_attr_setscope( &attr, contentionscope );
+ result = pthread_attr_setscope( &attr, contentionscope );
}