diff options
author | Brad King <brad.king@kitware.com> | 2010-09-14 17:19:53 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2010-09-14 17:19:53 (GMT) |
commit | f306a357b29ff10bb7ab83f7ceb7de2f77550935 (patch) | |
tree | 7301cc157d16a723eb080959bd9e853de46eafd0 /Source/cmSystemTools.cxx | |
parent | f2a813d51ca38d45aeea214690f1774b995c1851 (diff) | |
parent | 9d21281b7d4c1cec9071489a8f0a6fe19fb7ad2c (diff) | |
download | CMake-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.cxx | 3 |
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() |