diff options
| author | Klaus Schmidinger <vdr@tvdr.de> | 2016-12-23 09:49:31 +0100 |
|---|---|---|
| committer | Klaus Schmidinger <vdr@tvdr.de> | 2016-12-23 09:49:31 +0100 |
| commit | 736f2fed426b3b3ca68a5ce808586ab16e5bb070 (patch) | |
| tree | 02ad2d39b67b96b96916ef7930bcfa480adecb54 /timers.c | |
| parent | fdbbbd146a675ae3915fefa403fd20dafca9b2a2 (diff) | |
| download | vdr-736f2fed426b3b3ca68a5ce808586ab16e5bb070.tar.gz vdr-736f2fed426b3b3ca68a5ce808586ab16e5bb070.tar.bz2 | |
Fixed the non-const version of cTimers::GetTimer()
Diffstat (limited to 'timers.c')
| -rw-r--r-- | timers.c | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: timers.c 4.6 2016/12/22 14:24:44 kls Exp $ + * $Id: timers.c 4.7 2016/12/23 09:48:39 kls Exp $ */ #include "timers.h" @@ -761,11 +761,6 @@ const cTimer *cTimers::GetTimer(const cTimer *Timer) const return NULL; } -cTimer *cTimers::GetTimer(const cTimer *Timer) -{ - return (cTimer *)GetTimer(Timer); -} - const cTimer *cTimers::GetMatch(time_t t) const { static int LastPending = -1; |
