ENH: Added extra newline in an error message to improve readability.

This commit is contained in:
Brad King 2001-09-20 10:53:34 -04:00
parent 924cf69ec6
commit ee86c59cba
1 changed files with 1 additions and 0 deletions

View File

@ -105,6 +105,7 @@ bool cmSetCommand::InitialPass(std::vector<std::string>& args)
{
std::string error = "Error in arguments to cache, expected CACHE found:";
error += args[cacheStart];
error += "\n";
this->SetError(error.c_str());
return false;
}