diff options
author | Brad King <brad.king@kitware.com> | 2010-09-10 18:42:09 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2010-09-10 18:42:09 (GMT) |
commit | 9d21281b7d4c1cec9071489a8f0a6fe19fb7ad2c (patch) | |
tree | aae8d7e8ec4e5d0d379766478ba4ddf15467f7ff /Source/cmSystemTools.cxx | |
parent | 86025d3a38fb2dd6409e713b4633bf782975d5c3 (diff) | |
download | CMake-9d21281b7d4c1cec9071489a8f0a6fe19fb7ad2c.zip CMake-9d21281b7d4c1cec9071489a8f0a6fe19fb7ad2c.tar.gz CMake-9d21281b7d4c1cec9071489a8f0a6fe19fb7ad2c.tar.bz2 |
Fix line-too-long style errors
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 8378922..069db7e 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() |