diff options
author | David Cole <david.cole@kitware.com> | 2011-02-28 15:47:23 (GMT) |
---|---|---|
committer | David Cole <david.cole@kitware.com> | 2011-02-28 15:47:23 (GMT) |
commit | 61a83f955a613383b78cb2759d867d3133741a49 (patch) | |
tree | 012017f9eb34c37813f1f9fc55321022b6485af8 /Source/cmFileCommand.cxx | |
parent | 963bebcc174411e1087af31cc5054422b0080e76 (diff) | |
download | CMake-61a83f955a613383b78cb2759d867d3133741a49.zip CMake-61a83f955a613383b78cb2759d867d3133741a49.tar.gz CMake-61a83f955a613383b78cb2759d867d3133741a49.tar.bz2 |
Fix KWStyle line too long error (#11286)
Diffstat (limited to 'Source/cmFileCommand.cxx')
-rw-r--r-- | Source/cmFileCommand.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
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); |