suspicious use of ;

This commit is contained in:
Francois Perrad 2015-10-11 12:09:29 +02:00 committed by Steffen Jaeckel
parent 2d40b4deb1
commit 2404bd3c13

View File

@ -31,7 +31,7 @@ int mp_cnt_lsb(mp_int *a)
}
/* scan lower digits until non-zero */
for (x = 0; x < a->used && a->dp[x] == 0; x++);
for (x = 0; x < a->used && a->dp[x] == 0; x++) {}
q = a->dp[x];
x *= DIGIT_BIT;