Fix KWStyle line too long error (#11286)

This commit is contained in:
David Cole 2011-02-28 10:47:23 -05:00
parent 963bebcc17
commit 61a83f955a
1 changed files with 2 additions and 1 deletions

View File

@ -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);