fix a return type

This commit is contained in:
Jeff Epler 2022-01-11 08:41:45 -06:00
parent 28868b1132
commit f2094199f8
No known key found for this signature in database
GPG key ID: D5BF15AB975AB4DE

View file

@ -100,7 +100,7 @@ static bool isly(int year) {
return true;
}
static bool last_yday(int year) { return 365 + isly(year); }
static int last_yday(int year) { return 365 + isly(year); }
// advance to exactly the top of the n'th minute from now
void wwvb_time::advance_minutes(int n) {