Clean up g++ unused-but-set-variable warning in pcas

This commit is contained in:
Andrew Johnson
2015-10-18 21:41:46 -05:00
parent c4b128dfff
commit b099ea2966

View File

@@ -354,9 +354,11 @@ caStatus casDGClient::searchFailResponse ( const caHdrLargeArray * mp )
status = this->out.copyInHeader ( CA_PROTO_NOT_FOUND, 0,
mp->m_dataType, mp->m_count, mp->m_cid, mp->m_available, 0 );
this->out.commitMsg ();
if ( status == S_cas_success ) {
this->out.commitMsg ();
}
return S_cas_success;
return S_cas_success;
}
/*