sshbn.c (internal_mul): Zap conditional redeclaration of `i'.
authorMark Wooding <mdw@distorted.org.uk>
Mon, 29 Jul 2013 22:20:31 +0000 (23:20 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Mon, 29 Jul 2013 22:20:31 +0000 (23:20 +0100)
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 <mdw@distorted.org.uk>
sshbn.c

diff --git a/sshbn.c b/sshbn.c
index 24f3ca6..5567e56 100644 (file)
--- 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