From 896af27d81c154d60028e80c73012c70a4f289e4 Mon Sep 17 00:00:00 2001 From: Kevin Ryde Date: Wed, 7 Apr 2004 01:11:34 +0200 Subject: * gen-bases.c, gen-fib.c, gen-psqr.c: For mpz_out_str, use stdout instead of 0, in case a K&R treats int and FILE* params differently. --- gen-fib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gen-fib.c') diff --git a/gen-fib.c b/gen-fib.c index cf159fe72..c7d595a73 100644 --- a/gen-fib.c +++ b/gen-fib.c @@ -1,6 +1,6 @@ /* Generate Fibonacci table data. -Copyright 2001, 2002 Free Software Foundation, Inc. +Copyright 2001, 2002, 2004 Free Software Foundation, Inc. This file is part of the GNU MP Library. @@ -101,7 +101,7 @@ table (int numb_bits) for (i = 0; i < fnum; i++) { printf (" CNST_LIMB (0x"); - mpz_out_str (0, 16, f[i]); + mpz_out_str (stdout, 16, f[i]); printf ("), /* %d */\n", i-1); } printf ("};\n"); -- cgit v1.2.1