diff options
author | Christian Heimes <christian@python.org> | 2016-09-06 22:32:06 (GMT) |
---|---|---|
committer | Christian Heimes <christian@python.org> | 2016-09-06 22:32:06 (GMT) |
commit | dc5a3fe4efee222dd8512fd63d9445ae5de42fc1 (patch) | |
tree | 0afda9dc7dd8c9c8db3b5649e05cbf532a58dd9d /Modules/_blake2 | |
parent | 9c2f3041039b21ec08ed3179333460110ff6a355 (diff) | |
download | cpython-dc5a3fe4efee222dd8512fd63d9445ae5de42fc1.zip cpython-dc5a3fe4efee222dd8512fd63d9445ae5de42fc1.tar.gz cpython-dc5a3fe4efee222dd8512fd63d9445ae5de42fc1.tar.bz2 |
Issue #26798: for loop initial declarations, take 3
Diffstat (limited to 'Modules/_blake2')
-rw-r--r-- | Modules/_blake2/impl/blake2s-ref.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/_blake2/impl/blake2s-ref.c b/Modules/_blake2/impl/blake2s-ref.c index 157e9a2..b90e8ef 100644 --- a/Modules/_blake2/impl/blake2s-ref.c +++ b/Modules/_blake2/impl/blake2s-ref.c @@ -150,6 +150,7 @@ BLAKE2_LOCAL_INLINE(int) blake2s_init0( blake2s_state *S ) int blake2s_init_param( blake2s_state *S, const blake2s_param *P ) { const uint32_t *p = ( const uint32_t * )( P ); + size_t i; blake2s_init0( S ); |