diff options
| author | Frank Warmerdam <warmerdam@pobox.com> | 2000-04-04 17:28:19 +0000 |
|---|---|---|
| committer | Frank Warmerdam <warmerdam@pobox.com> | 2000-04-04 17:28:19 +0000 |
| commit | 060d898a3a1338b06b82c9c1d948253708085ca1 (patch) | |
| tree | 8bdd5392d086fbf5f1cbbec7b1719c5e47961b27 /src | |
| parent | b92fa24f50b8acc61e64ded19f1d3fb135cbc2b6 (diff) | |
| download | PROJ-060d898a3a1338b06b82c9c1d948253708085ca1.tar.gz PROJ-060d898a3a1338b06b82c9c1d948253708085ca1.zip | |
Initialize b to zero.
git-svn-id: http://svn.osgeo.org/metacrs/proj/trunk@831 4e78687f-474d-0410-85f9-8d5e500ac6b2
Diffstat (limited to 'src')
| -rw-r--r-- | src/pj_ell_set.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pj_ell_set.c b/src/pj_ell_set.c index 7d220331..525d8b60 100644 --- a/src/pj_ell_set.c +++ b/src/pj_ell_set.c @@ -12,7 +12,7 @@ static const char SCCSID[]="@(#)pj_ell_set.c 4.5 93/06/12 GIE REL"; int /* initialize geographic shape parameters */ pj_ell_set(paralist *pl, double *a, double *es) { int i; - double b, e; + double b=0.0, e; char *name; paralist *start = 0, *curr; |
