commit 969db94dbd640891967a12b462f24b0b8d2c922b parent 7f169e9f63822261854ea8ac36f7a5dd70c144e1 Author: Nihal Jere <nihal@nihaljere.xyz> Date: Mon, 22 Feb 2021 19:19:03 -0600 sha256.c: fix warning about mismatched signedness Diffstat:
M | sha256.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sha256.c b/sha256.c @@ -215,7 +215,7 @@ sha256_file(char *path, char *dest) return -1; } - sha256_sum(&ctx, dest); + sha256_sum(&ctx, (unsigned char *) dest); fclose(f); return 0; }