From 5c394700317c86151bca206aa500066e18d13e24 Mon Sep 17 00:00:00 2001 From: Brad King Date: Fri, 22 Jun 2001 12:17:03 -0400 Subject: BUG: Added missing newline in error message. --- Source/cmIncludeCommand.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmIncludeCommand.cxx b/Source/cmIncludeCommand.cxx index 1b440de..3eae93d 100644 --- a/Source/cmIncludeCommand.cxx +++ b/Source/cmIncludeCommand.cxx @@ -34,7 +34,7 @@ bool cmIncludeCommand::InitialPass(std::vector& 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; } -- cgit v0.12