mirror of
https://salsa.debian.org/dskoll/remind.git
synced 2026-04-16 06:18:47 +02:00
Use "long long" for 32-bit systems.
This commit is contained in:
@@ -3758,9 +3758,9 @@ solstice_equinox_for_year(int y, int which)
|
||||
}
|
||||
|
||||
j -= 2447892.50000; /* This is the Julian date of midnight, 1 Jan 1990 UTC */
|
||||
int dse = (int) j;
|
||||
long long dse = (long) j;
|
||||
|
||||
int min = floor((j - (double) dse) * MINUTES_PER_DAY);
|
||||
long long min = (long long) floor((j - (double) dse) * MINUTES_PER_DAY);
|
||||
int ret;
|
||||
|
||||
/* Convert from UTC to local time */
|
||||
|
||||
Reference in New Issue
Block a user