From 11e212bfc25b5b2168f29b6e60bf5d8cc6e94b58 Mon Sep 17 00:00:00 2001 From: Andy Cedilnik Date: Thu, 17 Jul 2003 14:56:17 -0400 Subject: [PATCH] ENH: Remove extra new line after the written string --- Source/cmFileCommand.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx index 018c605db..0f8d131ac 100644 --- a/Source/cmFileCommand.cxx +++ b/Source/cmFileCommand.cxx @@ -91,7 +91,7 @@ bool cmFileCommand::HandleWriteCommand(std::vector const& args, this->SetError(error.c_str()); return false; } - file << message << std::endl; + file << message; file.close(); return true; }