summaryrefslogtreecommitdiffstats
path: root/Source/cmSetCommand.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2001-09-20 14:53:34 (GMT)
committerBrad King <brad.king@kitware.com>2001-09-20 14:53:34 (GMT)
commitee86c59cba8884879e94361044dd8d4359abfd6e (patch)
tree904956d9946de1772a2b0559637ef519ed14d958 /Source/cmSetCommand.cxx
parent924cf69ec65d653d47a1cd2da2802b2edca8f2e6 (diff)
downloadCMake-ee86c59cba8884879e94361044dd8d4359abfd6e.zip
CMake-ee86c59cba8884879e94361044dd8d4359abfd6e.tar.gz
CMake-ee86c59cba8884879e94361044dd8d4359abfd6e.tar.bz2
ENH: Added extra newline in an error message to improve readability.
Diffstat (limited to 'Source/cmSetCommand.cxx')
-rw-r--r--Source/cmSetCommand.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmSetCommand.cxx b/Source/cmSetCommand.cxx
index 00e1bc5..2357468 100644
--- a/Source/cmSetCommand.cxx
+++ b/Source/cmSetCommand.cxx
@@ -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;
}