mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
liblzma: Remove a useless C99ism from sha256.c.
Unsurprisingly it makes no difference in compiled output.
This commit is contained in:
parent
41e436076c
commit
0b6168974f
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ static const uint32_t SHA256_K[64] = {
|
||||||
|
|
||||||
|
|
||||||
static void
|
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 W[16];
|
||||||
uint32_t T[8];
|
uint32_t T[8];
|
||||||
|
|
Loading…
Reference in a new issue