diff options
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; } } |