summaryrefslogtreecommitdiff
path: root/gen-fac.c
diff options
context:
space:
mode:
authorTorbjorn Granlund <tege@gmplib.org>2012-11-30 11:38:58 +0100
committerTorbjorn Granlund <tege@gmplib.org>2012-11-30 11:38:58 +0100
commit8e37e2929d0319e2131e0a9f92d3c258df016eb4 (patch)
tree42ed6a4a557201acfab87e0e0058172b91a523af /gen-fac.c
parent65ca68050eade63ef61626b19b3ad073ac62ac6d (diff)
downloadgmp-8e37e2929d0319e2131e0a9f92d3c258df016eb4.tar.gz
(gen_consts): Correct printf types.
Diffstat (limited to 'gen-fac.c')
-rw-r--r--gen-fac.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gen-fac.c b/gen-fac.c
index 6fc13ab6b..0754e7ef5 100644
--- a/gen-fac.c
+++ b/gen-fac.c
@@ -191,7 +191,7 @@ gen_consts (int numb, int nail, int limb)
}
printf ("\n");
printf
- ("#define TABLE_LIMIT_2N_MINUS_POPC_2N %i\n", ofe + 1);
+ ("#define TABLE_LIMIT_2N_MINUS_POPC_2N %lu\n", ofe + 1);
ofl = (ofl + 1) / 2;
@@ -242,7 +242,7 @@ gen_consts (int numb, int nail, int limb)
for (b = ofl; b <= ofe; b++)
{
mpz_bin_uiui (x, 2 * b, b);
- printf ("%lu",mpz_remove_twos (x));
+ printf ("%d", mpz_remove_twos (x));
if (b != ofe)
printf (",");
}