COMP: fix line length style error
This commit is contained in:
parent
6b7bf34341
commit
c2308e796f
|
@ -202,7 +202,8 @@ bool cmCTestSubmitHandler::SubmitUsingFTP(const cmStdString& localprefix,
|
||||||
*this->LogFile << " Error when uploading file: "
|
*this->LogFile << " Error when uploading file: "
|
||||||
<< local_file.c_str()
|
<< local_file.c_str()
|
||||||
<< std::endl
|
<< std::endl
|
||||||
<< " Error message was: " << error_buffer << std::endl
|
<< " Error message was: "
|
||||||
|
<< error_buffer << std::endl
|
||||||
<< " Curl output was: ";
|
<< " Curl output was: ";
|
||||||
// avoid dereference of empty vector
|
// avoid dereference of empty vector
|
||||||
if(chunk.size())
|
if(chunk.size())
|
||||||
|
|
|
@ -1432,7 +1432,8 @@ int cmSystemToolsGZStructOpen(void* call_data, const char *pathname,
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(__BEOS__) && !defined(__ZETA__) // no fchmod on BeOS 5...do pathname instead.
|
// no fchmod on BeOS 5...do pathname instead.
|
||||||
|
#if defined(__BEOS__) && !defined(__ZETA__)
|
||||||
if ((oflags & O_CREAT) && chmod(pathname, mode))
|
if ((oflags & O_CREAT) && chmod(pathname, mode))
|
||||||
{
|
{
|
||||||
return -1;
|
return -1;
|
||||||
|
|
Loading…
Reference in New Issue