From 61a83f955a613383b78cb2759d867d3133741a49 Mon Sep 17 00:00:00 2001 From: David Cole Date: Mon, 28 Feb 2011 10:47:23 -0500 Subject: Fix KWStyle line too long error (#11286) --- Source/cmFileCommand.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 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(st.st_size)); + res = ::curl_easy_setopt(curl, + CURLOPT_INFILESIZE, static_cast(st.st_size)); check_curl_result(res, "UPLOAD cannot set input file size: "); res = ::curl_easy_perform(curl); -- cgit v0.12