Fixed some missing variables
This commit is contained in:
parent
9bc8c7f4aa
commit
400f48fe47
12
src/gradix.c
12
src/gradix.c
@ -339,6 +339,7 @@ main(int argc, char *argv[])
|
|||||||
hour = 23,
|
hour = 23,
|
||||||
min = 39,
|
min = 39,
|
||||||
sec = 45,
|
sec = 45,
|
||||||
|
sign,
|
||||||
p;
|
p;
|
||||||
double timezone = 1.0,
|
double timezone = 1.0,
|
||||||
lon = 19.081599,
|
lon = 19.081599,
|
||||||
@ -347,6 +348,10 @@ main(int argc, char *argv[])
|
|||||||
te,
|
te,
|
||||||
cusps[13],
|
cusps[13],
|
||||||
ascmc[10];
|
ascmc[10];
|
||||||
|
int elementPoint[4];
|
||||||
|
int typePoint[3];
|
||||||
|
planetInfo_t *planetInfo;
|
||||||
|
moonPhase *phase;
|
||||||
|
|
||||||
#if 1
|
#if 1
|
||||||
year = 1983;
|
year = 1983;
|
||||||
@ -356,8 +361,13 @@ main(int argc, char *argv[])
|
|||||||
min = 54;
|
min = 54;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
pos,
|
for (p = 0; p < 4; p++) {
|
||||||
|
elementPoint[p] = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (p = 0; p < 3; p++) {
|
||||||
|
typePoint[p] = 0;
|
||||||
|
}
|
||||||
|
|
||||||
swe_set_ephe_path(EPHEDIR);
|
swe_set_ephe_path(EPHEDIR);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user