diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-07-17 18:56:17 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-07-17 18:56:17 (GMT) |
commit | 11e212bfc25b5b2168f29b6e60bf5d8cc6e94b58 (patch) | |
tree | abe6590b046b68a87435f2cc0fbb651463829b25 /Source/cmFileCommand.cxx | |
parent | d6ebc123f76c0d5856967dd2bf809bef2c4f4fa9 (diff) | |
download | CMake-11e212bfc25b5b2168f29b6e60bf5d8cc6e94b58.zip CMake-11e212bfc25b5b2168f29b6e60bf5d8cc6e94b58.tar.gz CMake-11e212bfc25b5b2168f29b6e60bf5d8cc6e94b58.tar.bz2 |
ENH: Remove extra new line after the written string
Diffstat (limited to 'Source/cmFileCommand.cxx')
-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 018c605..0f8d131 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; } |