COMP: Remove unused variable
This commit is contained in:
parent
fc913ee499
commit
ea6547b6b3
|
@ -403,13 +403,11 @@ int cmCTestUpdateHandler::ProcessHandler()
|
||||||
<< "\t<UpdateCommand>" << m_CTest->MakeXMLSafe(command)
|
<< "\t<UpdateCommand>" << m_CTest->MakeXMLSafe(command)
|
||||||
<< "</UpdateCommand>\n"
|
<< "</UpdateCommand>\n"
|
||||||
<< "\t<UpdateReturnStatus>";
|
<< "\t<UpdateReturnStatus>";
|
||||||
int failed = 0;
|
|
||||||
if ( !res || retVal )
|
if ( !res || retVal )
|
||||||
{
|
{
|
||||||
os << "Update error: ";
|
os << "Update error: ";
|
||||||
os << m_CTest->MakeXMLSafe(goutput);
|
os << m_CTest->MakeXMLSafe(goutput);
|
||||||
std::cerr << "Update with command: " << command << " failed" << std::endl;
|
std::cerr << "Update with command: " << command << " failed" << std::endl;
|
||||||
failed = 1;
|
|
||||||
}
|
}
|
||||||
os << "</UpdateReturnStatus>" << std::endl;
|
os << "</UpdateReturnStatus>" << std::endl;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue