1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-31 10:29:10 +00:00

(svn r25333) -Fix: Potential signedness issue.

This commit is contained in:
frosch
2013-06-08 13:22:06 +00:00
parent a23b84fdfc
commit 5bb1d01af9

View File

@@ -205,7 +205,7 @@ static void OnNewYear()
/* check if we reached the maximum year, decrement dates by a year */
} else if (_cur_year == MAX_YEAR + 1) {
Vehicle *v;
uint days_this_year;
int days_this_year;
_cur_year--;
days_this_year = IsLeapYear(_cur_year) ? DAYS_IN_LEAP_YEAR : DAYS_IN_YEAR;