summaryrefslogtreecommitdiff
path: root/timers.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2012-06-03 13:06:15 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2012-06-03 13:06:15 +0200
commit1bb441e6994457de1ec089e4eaa432efdf05d3b3 (patch)
tree71da01a323d334dff6fb9426c9b45d41316e32ae /timers.c
parent3efb79c855c466a777ce65c85d633eb369d251ba (diff)
downloadvdr-1bb441e6994457de1ec089e4eaa432efdf05d3b3.tar.gz
vdr-1bb441e6994457de1ec089e4eaa432efdf05d3b3.tar.bz2
Added a missing template specification to the c'tor of cSortedTimers
Diffstat (limited to 'timers.c')
-rw-r--r--timers.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/timers.c b/timers.c
index 50aebb87..13fce1e2 100644
--- a/timers.c
+++ b/timers.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: timers.c 2.9 2012/06/02 12:10:00 kls Exp $
+ * $Id: timers.c 2.10 2012/06/03 13:04:23 kls Exp $
*/
#include "timers.h"
@@ -829,7 +829,7 @@ static int CompareTimers(const void *a, const void *b)
}
cSortedTimers::cSortedTimers(void)
-:cVector(Timers.Count())
+:cVector<const cTimer *>(Timers.Count())
{
for (const cTimer *Timer = Timers.First(); Timer; Timer = Timers.Next(Timer))
Append(Timer);