diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-03-08 21:33:39 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-03-08 21:33:39 (GMT) |
commit | e8affe5cc23ca560f4241362ec0f5d0ad5a6a455 (patch) | |
tree | 21554a1b2fc966e0600b3d2d2b3260113b3658d0 /Source/CPack/cmCPackLog.cxx | |
parent | 3d44b9a354edacff4b87ccf2a950ec698798591d (diff) | |
download | CMake-e8affe5cc23ca560f4241362ec0f5d0ad5a6a455.zip CMake-e8affe5cc23ca560f4241362ec0f5d0ad5a6a455.tar.gz CMake-e8affe5cc23ca560f4241362ec0f5d0ad5a6a455.tar.bz2 |
STYLE: Lots of formating to remove style problems
Diffstat (limited to 'Source/CPack/cmCPackLog.cxx')
-rw-r--r-- | Source/CPack/cmCPackLog.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/CPack/cmCPackLog.cxx b/Source/CPack/cmCPackLog.cxx index bb42dc8..180d7df 100644 --- a/Source/CPack/cmCPackLog.cxx +++ b/Source/CPack/cmCPackLog.cxx @@ -77,7 +77,8 @@ bool cmCPackLog::SetLogOutputFile(const char* fname) } //---------------------------------------------------------------------- -void cmCPackLog::Log(int tag, const char* file, int line, const char* msg, size_t length) +void cmCPackLog::Log(int tag, const char* file, int line, + const char* msg, size_t length) { // By default no logging bool display = false; @@ -217,6 +218,6 @@ void cmCPackLog::Log(int tag, const char* file, int line, const char* msg, size_ } if ( msg[length-1] == '\n' || length > 2 ) { - m_NewLine = true;; + m_NewLine = true; } } |