You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In md5_update the len parameter is unsigned and in fp_write_bytes the size parameter is int. They should both be size_t to avoid 32/64-bit warnings on some platforms.
The text was updated successfully, but these errors were encountered:
In
md5_update
thelen
parameter isunsigned
and infp_write_bytes
thesize
parameter isint
. They should both besize_t
to avoid 32/64-bit warnings on some platforms.The text was updated successfully, but these errors were encountered: