changeset: 103156:a1e032dbcf86 user: Christian Heimes date: Wed Sep 07 00:32:06 2016 +0200 files: Modules/_blake2/impl/blake2s-ref.c description: Issue #26798: for loop initial declarations, take 3 diff -r 5c31599de76a -r a1e032dbcf86 Modules/_blake2/impl/blake2s-ref.c --- a/Modules/_blake2/impl/blake2s-ref.c Wed Sep 07 00:09:22 2016 +0200 +++ b/Modules/_blake2/impl/blake2s-ref.c Wed Sep 07 00:32:06 2016 +0200 @@ -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 );