avoid warnings ('index' shadows global declaration)

Submitted by: Nils Larsch
This commit is contained in:
Bodo Möller 2002-10-29 11:50:20 +00:00
parent 259cdf2af9
commit 90a617e050

View File

@ -242,9 +242,9 @@ struct bignum_ctx
#define bn_clear_top2max(a) \ #define bn_clear_top2max(a) \
{ \ { \
int index = (a)->dmax - (a)->top; \ int ind = (a)->dmax - (a)->top; \
BN_ULONG *ftl = &(a)->d[(a)->top-1]; \ BN_ULONG *ftl = &(a)->d[(a)->top-1]; \
for (; index != 0; index--) \ for (; ind != 0; ind--) \
*(++ftl) = 0x0; \ *(++ftl) = 0x0; \
} }