mirror of https://github.com/python/cpython
Fix a compilation warning on Windows
This commit is contained in:
parent
1666f19317
commit
ca69bb90cb
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue