commit | ca69bb90cb6091453d74d9693653b1c649553782 | [log] [tgz] |
---|---|---|
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | Thu Jun 25 21:29:32 2009 +0000 |
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | Thu Jun 25 21:29:32 2009 +0000 |
tree | fcc3bfc83e1aac318c0550b6ab4d05aebdeca0d9 | |
parent | 1666f19317e8821120d8d29f1e9284d19b63303f [diff] |
Fix a compilation warning on Windows
diff --git a/Modules/md5.c b/Modules/md5.c index f6d0e37..642f0bd 100644 --- a/Modules/md5.c +++ b/Modules/md5.c
@@ -325,7 +325,7 @@ { 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)