diff options
| author | Elliott Sales de Andrade <quantum.analyst@gmail.com> | 2015-05-31 00:31:51 -0400 |
|---|---|---|
| committer | Elliott Sales de Andrade <quantum.analyst@gmail.com> | 2015-05-31 00:31:51 -0400 |
| commit | 95134a6980aff6e9073ca369c0b131fbfb2fecbf (patch) | |
| tree | a5407562573f06a2924e6e095e933c225ed8c1dd /src | |
| parent | 5ed55f761233d1ab4ebbaa04354500aad27ad6a7 (diff) | |
| download | PROJ-95134a6980aff6e9073ca369c0b131fbfb2fecbf.tar.gz PROJ-95134a6980aff6e9073ca369c0b131fbfb2fecbf.zip | |
Fix uninitialized variable warning.
Diffstat (limited to 'src')
| -rw-r--r-- | src/mk_cheby.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |
