diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-07-08 01:10:28 +0200 |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-07-08 01:10:28 +0200 |
commit | 081fe46ff96bccb1a256c356443b625b467814c8 (patch) | |
tree | a33b9310cf545fa6b9437c9c2e4b9cda87ff6b12 /Modules/md5module.c | |
parent | 0bec35d2d07de46a904a9862a9bc6ac4d9d161b9 (diff) | |
download | cpython-git-081fe46ff96bccb1a256c356443b625b467814c8.tar.gz |
Issue #9566: cast unsigned int to Py_ssize_t in md5 and sha1 modules
Fix a compiler warning on Windows 64 bits.
Diffstat (limited to 'Modules/md5module.c')
-rw-r--r-- | Modules/md5module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/md5module.c b/Modules/md5module.c index 208930dfaa..de43f1cc7b 100644 --- a/Modules/md5module.c +++ b/Modules/md5module.c @@ -243,7 +243,7 @@ void md5_process(struct md5_state *md5, in += MD5_BLOCKSIZE; inlen -= MD5_BLOCKSIZE; } else { - n = MIN(inlen, (MD5_BLOCKSIZE - md5->curlen)); + n = MIN(inlen, (Py_ssize_t)(MD5_BLOCKSIZE - md5->curlen)); memcpy(md5->buf + md5->curlen, in, (size_t)n); md5->curlen += n; in += n; |