From f51b60044bc43b28f25051b33896228356cd5263 Mon Sep 17 00:00:00 2001 From: mdw Date: Tue, 15 Aug 2000 21:41:09 +0000 Subject: [PATCH] Bug fix: minimize the right thing. --- primorial.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/primorial.c b/primorial.c index 2ad2014..68c45ad 100644 --- a/primorial.c +++ b/primorial.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: primorial.c,v 1.3 2000/07/15 10:02:07 mdw Exp $ + * $Id: primorial.c,v 1.4 2000/08/15 21:41:09 mdw Exp $ * * Computes the product of the small primes * @@ -30,6 +30,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: primorial.c,v $ + * Revision 1.4 2000/08/15 21:41:09 mdw + * Bug fix: minimize the right thing. + * * Revision 1.3 2000/07/15 10:02:07 mdw * Include missing header file. * @@ -79,7 +82,8 @@ void primorial_setup(void) } mp_drop(p); primorial = mpmul_done(&mm); - mp_minimize(p); + mp_minimize(primorial); + primorial->a->n--; /* Permanent allocation */ } /*----- That's all, folks -------------------------------------------------*/ -- 2.11.0