C99 Compliance #29

Merged
jordan merged 11 commits from c99 into master 2024-01-13 22:13:46 +00:00
Showing only changes of commit 846e50a76e - Show all commits

View file

@ -60,7 +60,7 @@ typedef struct
} Sha1Context;
static void
Sha1Transform(uint32_t state[5], const uint8_t buffer[64])
Sha1Transform(uint32_t state[5], const uint8_t *buffer)
{
uint32_t a, b, c, d, e, i;
uint8_t workspace[64];