commit | dc5a3fe4efee222dd8512fd63d9445ae5de42fc1 | [log] [tgz] |
---|---|---|
author | Christian Heimes <christian@python.org> | Wed Sep 07 00:32:06 2016 +0200 |
committer | Christian Heimes <christian@python.org> | Wed Sep 07 00:32:06 2016 +0200 |
tree | 0afda9dc7dd8c9c8db3b5649e05cbf532a58dd9d | |
parent | 9c2f3041039b21ec08ed3179333460110ff6a355 [diff] |
Issue #26798: for loop initial declarations, take 3
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 @@ 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 );