From c2308e796f2b9ab68fc8e24189c1605cc1fad1ae Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Tue, 5 Dec 2006 09:14:32 -0500 Subject: [PATCH] COMP: fix line length style error --- Source/CTest/cmCTestSubmitHandler.cxx | 3 ++- Source/cmSystemTools.cxx | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Source/CTest/cmCTestSubmitHandler.cxx b/Source/CTest/cmCTestSubmitHandler.cxx index 50ad8eb2e..05a8e5a86 100644 --- a/Source/CTest/cmCTestSubmitHandler.cxx +++ b/Source/CTest/cmCTestSubmitHandler.cxx @@ -202,7 +202,8 @@ bool cmCTestSubmitHandler::SubmitUsingFTP(const cmStdString& localprefix, *this->LogFile << " Error when uploading file: " << local_file.c_str() << std::endl - << " Error message was: " << error_buffer << std::endl + << " Error message was: " + << error_buffer << std::endl << " Curl output was: "; // avoid dereference of empty vector if(chunk.size()) diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index 2a2ee9183..5684a5aa6 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -1432,7 +1432,8 @@ int cmSystemToolsGZStructOpen(void* call_data, const char *pathname, 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)) { return -1;