diff options
| author | Victor Stinner <victor.stinner@gmail.com> | 2013-05-08 00:00:44 +0200 | 
|---|---|---|
| committer | Victor Stinner <victor.stinner@gmail.com> | 2013-05-08 00:00:44 +0200 | 
| commit | 70792d268eaa8f460ac32d8084171a939f19f14b (patch) | |
| tree | 2247e0c89cf0e6d724ded908de3d410f77277b13 | |
| parent | e8289618bf13b13449baca38c22dd72ea75b8310 (diff) | |
| download | cpython-git-70792d268eaa8f460ac32d8084171a939f19f14b.tar.gz | |
Fix compiler warnings: explicit cast to int in sha256/sha512 modules
| -rw-r--r-- | Modules/sha256module.c | 4 | ||||
| -rw-r--r-- | Modules/sha512module.c | 4 | 
2 files changed, 4 insertions, 4 deletions
diff --git a/Modules/sha256module.c b/Modules/sha256module.c index 3274e7c76f..767bfac602 100644 --- a/Modules/sha256module.c +++ b/Modules/sha256module.c @@ -274,7 +274,7 @@ sha_update(SHAobject *sha_info, SHA_BYTE *buffer, Py_ssize_t count)          memcpy(((SHA_BYTE *) sha_info->data) + sha_info->local, buffer, i);          count -= i;          buffer += i; -        sha_info->local += i; +        sha_info->local += (int)i;          if (sha_info->local == SHA_BLOCKSIZE) {              sha_transform(sha_info);          } @@ -289,7 +289,7 @@ sha_update(SHAobject *sha_info, SHA_BYTE *buffer, Py_ssize_t count)          sha_transform(sha_info);      }      memcpy(sha_info->data, buffer, count); -    sha_info->local = count; +    sha_info->local = (int)count;  }  /* finish computing the SHA digest */ diff --git a/Modules/sha512module.c b/Modules/sha512module.c index 3e0f6cebc7..66c2c49c7f 100644 --- a/Modules/sha512module.c +++ b/Modules/sha512module.c @@ -300,7 +300,7 @@ sha512_update(SHAobject *sha_info, SHA_BYTE *buffer, Py_ssize_t count)          memcpy(((SHA_BYTE *) sha_info->data) + sha_info->local, buffer, i);          count -= i;          buffer += i; -        sha_info->local += i; +        sha_info->local += (int)i;          if (sha_info->local == SHA_BLOCKSIZE) {              sha512_transform(sha_info);          } @@ -315,7 +315,7 @@ sha512_update(SHAobject *sha_info, SHA_BYTE *buffer, Py_ssize_t count)          sha512_transform(sha_info);      }      memcpy(sha_info->data, buffer, count); -    sha_info->local = count; +    sha_info->local = (int)count;  }  /* finish computing the SHA digest */  | 
