summaryrefslogtreecommitdiffstats
path: root/Source/cmSystemTools.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2010-09-14 17:19:53 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2010-09-14 17:19:53 (GMT)
commitf306a357b29ff10bb7ab83f7ceb7de2f77550935 (patch)
tree7301cc157d16a723eb080959bd9e853de46eafd0 /Source/cmSystemTools.cxx
parentf2a813d51ca38d45aeea214690f1774b995c1851 (diff)
parent9d21281b7d4c1cec9071489a8f0a6fe19fb7ad2c (diff)
downloadCMake-f306a357b29ff10bb7ab83f7ceb7de2f77550935.zip
CMake-f306a357b29ff10bb7ab83f7ceb7de2f77550935.tar.gz
CMake-f306a357b29ff10bb7ab83f7ceb7de2f77550935.tar.bz2
Merge topic 'style-line-length'
9d21281 Fix line-too-long style errors 86025d3 file(DOWNLOAD): Fix error message formatting
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r--Source/cmSystemTools.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx
index 531616d..7bc89a4 100644
--- a/Source/cmSystemTools.cxx
+++ b/Source/cmSystemTools.cxx
@@ -1176,7 +1176,8 @@ bool cmSystemTools::ComputeFileMD5(const char* source, char* md5out)
// Should be efficient enough on most system:
const int bufferSize = 4096;
char buffer[bufferSize];
- unsigned char const* buffer_uc = reinterpret_cast<unsigned char const*>(buffer);
+ unsigned char const* buffer_uc =
+ reinterpret_cast<unsigned char const*>(buffer);
// This copy loop is very sensitive on certain platforms with
// slightly broken stream libraries (like HPUX). Normally, it is
// incorrect to not check the error condition on the fin.read()