From 57eb8c1b9d58df4cc3e026f82244f2928c008e2b Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Mon, 24 Jan 2000 11:55:48 +0000 Subject: See ChangeLog: Mon Jan 24 13:04:28 CET 2000 Werner Koch --- mpi/mpi-mpow.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'mpi/mpi-mpow.c') diff --git a/mpi/mpi-mpow.c b/mpi/mpi-mpow.c index a8c561dd..556f7e11 100644 --- a/mpi/mpi-mpow.c +++ b/mpi/mpi-mpow.c @@ -45,16 +45,16 @@ static int build_index( MPI *exparray, int k, int i, int t ) { int j, bitno; - int index = 0; + int idx = 0; bitno = t-i; for(j=k-1; j >= 0; j-- ) { - index <<= 1; + idx <<= 1; if( mpi_test_bit( exparray[j], bitno ) ) - index |= 1; + idx |= 1; } - /*log_debug("t=%d i=%d index=%d\n", t, i, index );*/ - return index; + /*log_debug("t=%d i=%d idx=%d\n", t, i, idx );*/ + return idx; } /**************** @@ -87,7 +87,7 @@ mpi_mulpowm( MPI res, MPI *basearray, MPI *exparray, MPI m) assert(t); assert( k < 10 ); - G = m_alloc_clear( (1<