1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-03-12 18:13:50 -05:00

Deal with a "possible extraneous ';'" warning.

[originally from svn r2841]
This commit is contained in:
Ben Harris 2003-02-12 23:21:38 +00:00
parent a0e773df86
commit a427048b29

View File

@ -1312,7 +1312,8 @@ Bignum primegen(int bits, int modulus, int residue, Bignum factor,
/*
* Next, write p-1 as q*2^k.
*/
for (k = 0; bignum_bit(p, k) == !k; k++); /* find first 1 bit in p-1 */
for (k = 0; bignum_bit(p, k) == !k; k++)
continue; /* find first 1 bit in p-1 */
q = bignum_rshift(p, k);
/* And store p-1 itself, which we'll need. */
pm1 = copybn(p);