summaryrefslogtreecommitdiffstats
path: root/Utilities/cmliblzma/liblzma/check
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-06-29 14:14:03 (GMT)
committerBrad King <brad.king@kitware.com>2016-06-29 14:14:03 (GMT)
commit60212979ea6cf92be7557358ef89484317ae0340 (patch)
treec7e20856647759c64e7dcaf1d3a836bcbbe8df9a /Utilities/cmliblzma/liblzma/check
parentd4f524040e8b9573bd568e4bb6b6ddb70d6ab366 (diff)
parente4d3914639d1e7b41337c9626b91458c4fe6ae95 (diff)
downloadCMake-60212979ea6cf92be7557358ef89484317ae0340.zip
CMake-60212979ea6cf92be7557358ef89484317ae0340.tar.gz
CMake-60212979ea6cf92be7557358ef89484317ae0340.tar.bz2
Merge branch 'upstream-liblzma' into update-liblzma
* upstream-liblzma: liblzma 2014-12-21 (265e5ffb)
Diffstat (limited to 'Utilities/cmliblzma/liblzma/check')
-rw-r--r--Utilities/cmliblzma/liblzma/check/crc32_fast.c2
-rw-r--r--Utilities/cmliblzma/liblzma/check/sha256.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/Utilities/cmliblzma/liblzma/check/crc32_fast.c b/Utilities/cmliblzma/liblzma/check/crc32_fast.c
index 13f65b4..c2c3cb7 100644
--- a/Utilities/cmliblzma/liblzma/check/crc32_fast.c
+++ b/Utilities/cmliblzma/liblzma/check/crc32_fast.c
@@ -20,7 +20,7 @@
#include "crc_macros.h"
-// If you make any changes, do some bench marking! Seemingly unrelated
+// If you make any changes, do some benchmarking! Seemingly unrelated
// changes can very easily ruin the performance (and very probably is
// very compiler dependent).
extern LZMA_API(uint32_t)
diff --git a/Utilities/cmliblzma/liblzma/check/sha256.c b/Utilities/cmliblzma/liblzma/check/sha256.c
index c2c85eb..3af6aa6 100644
--- a/Utilities/cmliblzma/liblzma/check/sha256.c
+++ b/Utilities/cmliblzma/liblzma/check/sha256.c
@@ -80,7 +80,7 @@ static const uint32_t SHA256_K[64] = {
static void
-transform(uint32_t state[], const uint32_t data[])
+transform(uint32_t state[8], const uint32_t data[16])
{
uint32_t W[16];
uint32_t T[8];