Browse Source

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

Brad King 24 years ago
parent
commit
ee86c59cba
1 changed files with 1 additions and 0 deletions
  1. 1 0
      Source/cmSetCommand.cxx

+ 1 - 0
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;
       }