BUG: Added missing newline in error message.

This commit is contained in:
Brad King 2001-06-22 12:17:03 -04:00
parent 24ec7f5c3c
commit 5c39470031
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ bool cmIncludeCommand::InitialPass(std::vector<std::string>& args)
}
if(!exists)
{
std::string error = "Include file not found: " + args[0];
std::string error = "Include file not found: " + args[0] + "\n";
this->SetError(error.c_str());
return false;
}