mktime(): Remove redundant assignment of 'result'

Checked with upstream lynx source code and the
second calculation line is the upstream one, too.
(In fact I diffed the whole function to check for changes)

cppcheck reported:
[rockbox/firmware/libc/mktime.c:43] -> [rockbox/firmware/libc/mktime.c:44]: (performance) Variable 'result' is reassigned a value before the old one has been used.

Change-Id: Ia04c5f55da7d86cd74cff4fce675a9c85ddce3e2
This commit is contained in:
Thomas Jarosch 2015-01-04 17:35:22 +01:00
parent 404ebb8b0b
commit b43fcbdab2

View file

@ -40,7 +40,6 @@ time_t mktime(struct tm *t)
year -= 1;
month += 12;
}
result = (year - 1970) * 365 + (year - 1969) / 4 + m_to_d[month];
result = (year - 1970) * 365 + m_to_d[month];
if (month <= 1)
year -= 1;