BUG: Display string not some weird pointer

This commit is contained in:
Andy Cedilnik 2004-04-09 09:53:25 -04:00
parent 59756a43f4
commit b4c62ce59e
1 changed files with 1 additions and 1 deletions

View File

@ -4513,7 +4513,7 @@ int cmCTest::RunCMakeAndTest(std::string* outstring)
else
{
std::cerr << "Building of project failed\n";
std::cerr << out << output << "\n";
std::cerr << out.str() << output << "\n";
}
// return to the original directory
cmSystemTools::ChangeDirectory(cwd.c_str());