提交 90a617e0 编写于 作者: B Bodo Möller

avoid warnings ('index' shadows global declaration)

Submitted by: Nils Larsch
上级 259cdf2a
......@@ -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; \
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册