diff options
author | Christian Wieninger <cwieninger@gmx.de> | 2013-01-07 18:54:23 +0100 |
---|---|---|
committer | Christian Wieninger <cwieninger@gmx.de> | 2013-01-07 18:54:23 +0100 |
commit | b90d5defb67c0598ddb6009237e5ff4ccf999f9e (patch) | |
tree | 0a368af0f4b7b8c2eaa0d6dc667f3f6d2c4dfaa9 /epgsearchext.c | |
parent | ba7c6277f024139ccca68f49d274d62e07c556b0 (diff) | |
download | vdr-plugin-epgsearch-b90d5defb67c0598ddb6009237e5ff4ccf999f9e.tar.gz vdr-plugin-epgsearch-b90d5defb67c0598ddb6009237e5ff4ccf999f9e.tar.bz2 |
fixed some g++ 4.6.3 compiler warnings
Diffstat (limited to 'epgsearchext.c')
-rw-r--r-- | epgsearchext.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/epgsearchext.c b/epgsearchext.c index 64b614a..5f90856 100644 --- a/epgsearchext.c +++ b/epgsearchext.c @@ -957,7 +957,7 @@ cEvent * cSearchExt::GetEventBySearchExt(const cSchedule *schedules, const cEven { time_t tEvent = p->StartTime(); struct tm tmEvent; - tm tm = *localtime_r(&tEvent, &tmEvent); + localtime_r(&tEvent, &tmEvent); if (DayOfWeek >= 0 && DayOfWeek != tmEvent.tm_wday) continue; if (DayOfWeek < 0) |