Pārlūkot izejas kodu

BUG: Added missing newline in error message.

Brad King 24 gadi atpakaļ
vecāks
revīzija
5c39470031
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  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;
     }