COMP: Remove unused variable

This commit is contained in:
Andy Cedilnik 2005-02-16 14:38:36 -05:00
parent fc913ee499
commit ea6547b6b3
1 changed files with 0 additions and 2 deletions

View File

@ -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;