mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-09 06:07:05 -06:00
Fix compiling issue on x32 with sha512.c
This commit is contained in:
@@ -192,7 +192,7 @@ void
|
||||
SHA512_Update (SHA512_CTX *m, const void *v, size_t len)
|
||||
{
|
||||
const unsigned char *p = v;
|
||||
size_t old_sz = m->sz[0];
|
||||
size_t old_sz = (size_t)m->sz[0];
|
||||
size_t offset;
|
||||
|
||||
m->sz[0] += len * 8;
|
||||
|
||||
Reference in New Issue
Block a user