summaryrefslogtreecommitdiffstats
path: root/Modules/_sha3
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2013-11-17 22:08:23 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2013-11-17 22:08:23 (GMT)
commit7f4bf9fb10945d227d131f1536ec7cd762ae029c (patch)
tree5534eeb588f9d91b19ec0b48f058ce29ceaaacdd /Modules/_sha3
parent136f064b9375fbd0012f5644e32338d66594ac0f (diff)
downloadcpython-7f4bf9fb10945d227d131f1536ec7cd762ae029c.zip
cpython-7f4bf9fb10945d227d131f1536ec7cd762ae029c.tar.gz
cpython-7f4bf9fb10945d227d131f1536ec7cd762ae029c.tar.bz2
Issue #19520: Fix (the last!) compiler warning on 32bit Windows, in _sha3
Diffstat (limited to 'Modules/_sha3')
-rw-r--r--Modules/_sha3/keccak/KeccakF-1600-opt32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_sha3/keccak/KeccakF-1600-opt32.c b/Modules/_sha3/keccak/KeccakF-1600-opt32.c
index dba6d59..c52bfb7 100644
--- a/Modules/_sha3/keccak/KeccakF-1600-opt32.c
+++ b/Modules/_sha3/keccak/KeccakF-1600-opt32.c
@@ -212,7 +212,7 @@ static void setInterleavedWordsInto8bytes(UINT8* dest, UINT32* evenAndOdd)
#define extractLanes(laneCount, state, data) \
{ \
- int i; \
+ unsigned int i; \
for(i=0; i<(laneCount); i++) \
setInterleavedWordsInto8bytes(data+i*8, (UINT32*)state+i*2); \
}