[Cmake-commits] CMake branch, next, updated. v2.8.4-1031-ge15035c
David Cole
david.cole at kitware.com
Mon Feb 28 10:48:19 EST 2011
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".
The branch, next has been updated
via e15035c367dfca8d9f18f83e027aeda0a9270972 (commit)
via 61a83f955a613383b78cb2759d867d3133741a49 (commit)
from 1484e191efe6ba86354bd0f5fd4885b3a1fba29c (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=e15035c367dfca8d9f18f83e027aeda0a9270972
commit e15035c367dfca8d9f18f83e027aeda0a9270972
Merge: 1484e19 61a83f9
Author: David Cole <david.cole at kitware.com>
AuthorDate: Mon Feb 28 10:48:16 2011 -0500
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon Feb 28 10:48:16 2011 -0500
Merge topic 'fix-11286-add-file-upload' into next
61a83f9 Fix KWStyle line too long error (#11286)
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=61a83f955a613383b78cb2759d867d3133741a49
commit 61a83f955a613383b78cb2759d867d3133741a49
Author: David Cole <david.cole at kitware.com>
AuthorDate: Mon Feb 28 10:47:23 2011 -0500
Commit: David Cole <david.cole at kitware.com>
CommitDate: Mon Feb 28 10:47:23 2011 -0500
Fix KWStyle line too long error (#11286)
diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx
index 8849a47..a72feb1 100644
--- a/Source/cmFileCommand.cxx
+++ b/Source/cmFileCommand.cxx
@@ -3045,7 +3045,8 @@ cmFileCommand::HandleUploadCommand(std::vector<std::string> const& args)
check_curl_result(res, "UPLOAD cannot set input file: ");
// and give the size of the upload (optional)
- res = ::curl_easy_setopt(curl, CURLOPT_INFILESIZE, static_cast<long>(st.st_size));
+ res = ::curl_easy_setopt(curl,
+ CURLOPT_INFILESIZE, static_cast<long>(st.st_size));
check_curl_result(res, "UPLOAD cannot set input file size: ");
res = ::curl_easy_perform(curl);
-----------------------------------------------------------------------
Summary of changes:
Source/cmFileCommand.cxx | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list