From 6ea4bfd21523b1f792564e46b824de5fcd1178fe Mon Sep 17 00:00:00 2001 From: Fredrik Johansson Date: Mon, 15 Jul 2013 13:53:56 +0200 Subject: [PATCH] fix function call --- gamma/series_fmpq_hypgeom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gamma/series_fmpq_hypgeom.c b/gamma/series_fmpq_hypgeom.c index 43501c70..18b328c9 100644 --- a/gamma/series_fmpq_hypgeom.c +++ b/gamma/series_fmpq_hypgeom.c @@ -113,7 +113,7 @@ evaluate_series(fmprb_struct * S, const fmpq_t a, long r, long N, long len, long /* S = T / (B * Q) */ _fmprb_vec_scalar_mul(B, B, len, Q, bsplit_wp); - _fmprb_poly_inv_series(S, B, len, bsplit_wp); + _fmprb_poly_inv_series(S, B, len, len, bsplit_wp); _fmprb_poly_mullow(B, T, len, S, len, len, bsplit_wp); _fmprb_vec_set(S, B, len);