fix indentation (part 1)

This commit is contained in:
Francois Perrad 2015-10-25 16:09:26 +01:00 committed by Steffen Jaeckel
parent 6d43d42f17
commit 614da3deec
4 changed files with 9 additions and 9 deletions

View File

@ -29,7 +29,7 @@ mp_sqr (mp_int * a, mp_int * b)
} else
#endif
#ifdef BN_MP_KARATSUBA_SQR_C
if (a->used >= KARATSUBA_SQR_CUTOFF) {
if (a->used >= KARATSUBA_SQR_CUTOFF) {
res = mp_karatsuba_sqr (a, b);
} else
#endif