diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-07-17 14:56:17 -0400 |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-07-17 14:56:17 -0400 |
commit | 11e212bfc25b5b2168f29b6e60bf5d8cc6e94b58 (patch) | |
tree | abe6590b046b68a87435f2cc0fbb651463829b25 | |
parent | d6ebc123f76c0d5856967dd2bf809bef2c4f4fa9 (diff) | |
download | cmake-11e212bfc25b5b2168f29b6e60bf5d8cc6e94b58.tar.gz |
ENH: Remove extra new line after the written string
-rw-r--r-- | Source/cmFileCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx index 018c605db1..0f8d131ac6 100644 --- a/Source/cmFileCommand.cxx +++ b/Source/cmFileCommand.cxx @@ -91,7 +91,7 @@ bool cmFileCommand::HandleWriteCommand(std::vector<std::string> const& args, this->SetError(error.c_str()); return false; } - file << message << std::endl; + file << message; file.close(); return true; } |