Commit ca69bb90 authored by Amaury Forgeot d'Arc's avatar Amaury Forgeot d'Arc

Fix a compilation warning on Windows

parent 1666f193
......@@ -325,7 +325,7 @@ md5_append(md5_state_t *pms, const md5_byte_t *data, unsigned int nbytes)
{
const md5_byte_t *p = data;
unsigned int left = nbytes;
int offset = (pms->count[0] >> 3) & 63;
unsigned int offset = (pms->count[0] >> 3) & 63;
md5_word_t nbits = (md5_word_t)(nbytes << 3);
if (nbytes <= 0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment