fix a return type
This commit is contained in:
parent
28868b1132
commit
f2094199f8
1 changed files with 1 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue