summaryrefslogtreecommitdiff
path: root/epgsearchext.c
diff options
context:
space:
mode:
authorChristian Wieninger <cwieninger@gmx.de>2013-01-07 18:54:23 +0100
committerChristian Wieninger <cwieninger@gmx.de>2013-01-07 18:54:23 +0100
commitb90d5defb67c0598ddb6009237e5ff4ccf999f9e (patch)
tree0a368af0f4b7b8c2eaa0d6dc667f3f6d2c4dfaa9 /epgsearchext.c
parentba7c6277f024139ccca68f49d274d62e07c556b0 (diff)
downloadvdr-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.c2
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)