From b3b52c7d6b8fac72916479e79c2968b0dd669e9f Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Mon, 29 Jul 2013 23:20:31 +0100 Subject: [PATCH] sshbn.c (internal_mul): Zap conditional redeclaration of `i'. This looks like old debugging code which has bitrotted somewhat. The build fails when `KARA_DEBUG' is turned on, because `i' has since been declared unconditionally in the same scope. Signed-off-by: Mark Wooding --- sshbn.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/sshbn.c b/sshbn.c index 24f3ca6b..5567e56c 100644 --- a/sshbn.c +++ b/sshbn.c @@ -259,9 +259,6 @@ static void internal_mul(const BignumInt *a, const BignumInt *b, int toplen = len/2, botlen = len - toplen; /* botlen is the bigger */ int midlen = botlen + 1; BignumDblInt carry; -#ifdef KARA_DEBUG - int i; -#endif /* * The coefficients a_1 b_1 and a_0 b_0 just avoid overlapping -- 2.11.0