From 2404bd3c13a27f68d2cb090031c549f3795c8997 Mon Sep 17 00:00:00 2001 From: Francois Perrad Date: Sun, 11 Oct 2015 12:09:29 +0200 Subject: [PATCH] suspicious use of ; --- bn_mp_cnt_lsb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bn_mp_cnt_lsb.c b/bn_mp_cnt_lsb.c index a617767..d862762 100644 --- a/bn_mp_cnt_lsb.c +++ b/bn_mp_cnt_lsb.c @@ -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;