From 62ea4977f0e38dea18dc1f7de121609bf3ae254c Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 13 Feb 2003 15:52:48 +0000 Subject: [PATCH] fixed sun pro warning --- src/cas/example/simple/exPV.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cas/example/simple/exPV.cc b/src/cas/example/simple/exPV.cc index 6be31c31d..6cd47a259 100644 --- a/src/cas/example/simple/exPV.cc +++ b/src/cas/example/simple/exPV.cc @@ -86,9 +86,9 @@ caStatus exPV::update ( const gdd & valueIn ) valueIn.dump(); # endif - caStatus cas = this->updateValue ( valueIn ); - if ( cas || ( ! this->pValue.valid() ) ) { - return cas; + caStatus status = this->updateValue ( valueIn ); + if ( status || ( ! this->pValue.valid() ) ) { + return status; } //