diff options
author | Brad King <brad.king@kitware.com> | 2001-06-22 16:17:03 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2001-06-22 16:17:03 (GMT) |
commit | 5c394700317c86151bca206aa500066e18d13e24 (patch) | |
tree | 04ec0c65a95f61054c6e170aa3e8e4099649adce /Source/cmIncludeCommand.cxx | |
parent | 24ec7f5c3cb52d7cfead429e88b5d063c1c9933c (diff) | |
download | CMake-5c394700317c86151bca206aa500066e18d13e24.zip CMake-5c394700317c86151bca206aa500066e18d13e24.tar.gz CMake-5c394700317c86151bca206aa500066e18d13e24.tar.bz2 |
BUG: Added missing newline in error message.
Diffstat (limited to 'Source/cmIncludeCommand.cxx')
-rw-r--r-- | Source/cmIncludeCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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<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; } |