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

View File

@ -34,7 +34,7 @@ bool cmIncludeCommand::InitialPass(std::vector<std::string>& args)
} }
if(!exists) 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()); this->SetError(error.c_str());
return false; return false;
} }