Skip to content

Commit

Permalink
lib/alg-sha512.c: Fix Werror=conversion.
Browse files Browse the repository at this point in the history
  • Loading branch information
besser82 committed Mar 31, 2021
1 parent 6cb303a commit 6d98870
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/alg-sha512.c
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ void
SHA512_Update(SHA512_CTX * ctx, const void *in, size_t len)
{
uint64_t bitlen[2];
uint64_t r;
size_t r;
const unsigned char *src = in;

/* Number of bytes left in the buffer from previous updates */
Expand Down

0 comments on commit 6d98870

Please sign in to comment.