From 0b6168974f1fac3a06157039235b66e4161b9b42 Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Sun, 12 Jan 2014 12:50:30 +0200 Subject: liblzma: Remove a useless C99ism from sha256.c. Unsurprisingly it makes no difference in compiled output. --- src/liblzma/check/sha256.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/liblzma') diff --git a/src/liblzma/check/sha256.c b/src/liblzma/check/sha256.c index 23bda922..f2cc0d71 100644 --- a/src/liblzma/check/sha256.c +++ b/src/liblzma/check/sha256.c @@ -80,7 +80,7 @@ static const uint32_t SHA256_K[64] = { static void -transform(uint32_t state[static 8], const uint32_t data[static 16]) +transform(uint32_t state[8], const uint32_t data[16]) { uint32_t W[16]; uint32_t T[8]; -- cgit v1.2.3