summaryrefslogtreecommitdiffstats
path: root/libtommath/bn_mp_dr_is_modulus.c
diff options
context:
space:
mode:
Diffstat (limited to 'libtommath/bn_mp_dr_is_modulus.c')
-rw-r--r--libtommath/bn_mp_dr_is_modulus.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libtommath/bn_mp_dr_is_modulus.c b/libtommath/bn_mp_dr_is_modulus.c
index ced330c..4631daa 100644
--- a/libtommath/bn_mp_dr_is_modulus.c
+++ b/libtommath/bn_mp_dr_is_modulus.c
@@ -29,9 +29,9 @@ int mp_dr_is_modulus(mp_int *a)
* but the first digit must be equal to -1 (mod b).
*/
for (ix = 1; ix < a->used; ix++) {
- if (a->dp[ix] != MP_MASK) {
- return 0;
- }
+ if (a->dp[ix] != MP_MASK) {
+ return 0;
+ }
}
return 1;
}