Indentation fix in main()

This commit is contained in:
Gergely Polonkai 2013-07-26 17:01:09 +02:00
parent ae6d5183ed
commit 0862fe6821

View File

@ -296,9 +296,23 @@ get_moon_phase(gint year, gint month, gint day, gint hour, gint min, gint sec)
int int
main(int argc, char *argv[]) main(int argc, char *argv[])
{ {
int year = 1981,
month = 3,
day = 11,
hour = 23,
min = 39,
sec = 45,
#if !CLUTTER_CHECK_VERSION(1, 3, 6) #if !CLUTTER_CHECK_VERSION(1, 3, 6)
#error "You need Clutter >= 1.3.6 to compile this software" #error "You need Clutter >= 1.3.6 to compile this software"
#endif #endif
p;
double timezone = 1.0,
lon = 19.081599,
lat = 47.462485,
alt = 200,
te,
cusps[13],
ascmc[10];
#if 1 #if 1
year = 1983; year = 1983;
@ -308,18 +322,10 @@ main(int argc, char *argv[])
min = 54; min = 54;
#endif #endif
double timezone = 1.0,
lon = 19.081599,
lat = 47.462485,
alt = 200,
te,
pos, pos,
cusps[13],
ascmc[10];
int p;
swe_set_ephe_path(EPHEDIR);
swe_set_ephe_path(EPHEDIR);
if (set_location_and_time(lon, lat, alt, year, month, day, hour, min, sec, timezone, &te) == 0) { if (set_location_and_time(lon, lat, alt, year, month, day, hour, min, sec, timezone, &te) == 0) {
return 1; return 1;
} }