summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2003-07-17 14:56:17 -0400
committerAndy Cedilnik <andy.cedilnik@kitware.com>2003-07-17 14:56:17 -0400
commit11e212bfc25b5b2168f29b6e60bf5d8cc6e94b58 (patch)
treeabe6590b046b68a87435f2cc0fbb651463829b25
parentd6ebc123f76c0d5856967dd2bf809bef2c4f4fa9 (diff)
downloadcmake-11e212bfc25b5b2168f29b6e60bf5d8cc6e94b58.tar.gz
ENH: Remove extra new line after the written string
-rw-r--r--Source/cmFileCommand.cxx2
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;
}