commit | 0fcab4a3ed5e39769609b60d6179c4c801e45985 | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@haypocalc.com> | Tue Jan 04 12:59:15 2011 +0000 |
committer | Victor Stinner <victor.stinner@haypocalc.com> | Tue Jan 04 12:59:15 2011 +0000 |
tree | fc5592e351ed18a96d7e94aeb2ced52c0ba2fd0d | |
parent | 6ab8e8298eba1d52debc53d6e6a38d419bb255c0 [diff] [blame] |
Issue #9566: use Py_ssize_t instead of int
diff --git a/Modules/sha512module.c b/Modules/sha512module.c index c403ed6..0faaf5c 100644 --- a/Modules/sha512module.c +++ b/Modules/sha512module.c
@@ -291,9 +291,9 @@ /* update the SHA digest */ static void -sha512_update(SHAobject *sha_info, SHA_BYTE *buffer, int count) +sha512_update(SHAobject *sha_info, SHA_BYTE *buffer, Py_ssize_t count) { - int i; + Py_ssize_t i; SHA_INT32 clo; clo = sha_info->count_lo + ((SHA_INT32) count << 3);