summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2002-10-29 11:50:20 +0000
committerBodo Möller <bodo@openssl.org>2002-10-29 11:50:20 +0000
commit90a617e05054f4b56aebf0b41a6cd465a26ebeca (patch)
treee90138131b678de91c18cf0cbb38047d2c43cf16 /crypto
parent259cdf2af9d729f41df09a5d938bc998fd9f5b5f (diff)
avoid warnings ('index' shadows global declaration)
Submitted by: Nils Larsch
Diffstat (limited to 'crypto')
-rw-r--r--crypto/bn/bn_lcl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/bn/bn_lcl.h b/crypto/bn/bn_lcl.h
index 090a7a0d00..1db940f4c5 100644
--- a/crypto/bn/bn_lcl.h
+++ b/crypto/bn/bn_lcl.h
@@ -242,9 +242,9 @@ struct bignum_ctx
#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]; \
- for (; index != 0; index--) \
+ for (; ind != 0; ind--) \
*(++ftl) = 0x0; \
}