From 95134a6980aff6e9073ca369c0b131fbfb2fecbf Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Sun, 31 May 2015 00:31:51 -0400 Subject: Fix uninitialized variable warning. --- src/mk_cheby.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mk_cheby.c b/src/mk_cheby.c index 0ff0a22d..32f22f1a 100644 --- a/src/mk_cheby.c +++ b/src/mk_cheby.c @@ -36,7 +36,7 @@ Tseries * mk_cheby(projUV a, projUV b, double res, projUV *resid, projUV (*func)(projUV), int nu, int nv, int power) { int j, i, nru, nrv, *ncu, *ncv; - Tseries *T; + Tseries *T = NULL; projUV **w; double cutres; -- cgit v1.2.3