salto_simulator
salto_simulator copied to clipboard
md5_update and fp_write_bytes should use size_t for len/size parameters
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.