Explorar o código

BUG: Added missing newline in error message.

Brad King %!s(int64=24) %!d(string=hai) anos
pai
achega
5c39470031
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      Source/cmIncludeCommand.cxx

+ 1 - 1
Source/cmIncludeCommand.cxx

@@ -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;
     }