[Python-checkins] cpython: Issue #26798: for loop initial declarations, take 3
christian.heimes
python-checkins at python.org
Tue Sep 6 18:32:13 EDT 2016
https://hg.python.org/cpython/rev/a1e032dbcf86
changeset: 103156:a1e032dbcf86
user: Christian Heimes <christian at python.org>
date: Wed Sep 07 00:32:06 2016 +0200
summary:
Issue #26798: for loop initial declarations, take 3
files:
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
--- 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 );
--
Repository URL: https://hg.python.org/cpython
More information about the Python-checkins
mailing list