diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2005-05-28 13:17:20 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2005-05-28 13:17:20 +0200 |
commit | 7701acd968c91de94c1d0ae184a0f746c4ae5844 (patch) | |
tree | c66f7457c6dfd66eca823855a2f560d053d6d827 /recording.c | |
parent | b4cbb84489020d0fa3e45fbff60cf1ce43ea6a1b (diff) | |
download | vdr-7701acd968c91de94c1d0ae184a0f746c4ae5844.tar.gz vdr-7701acd968c91de94c1d0ae184a0f746c4ae5844.tar.bz2 |
Now using hash tables to speed up cSchedule::GetEvent()
Diffstat (limited to 'recording.c')
-rw-r--r-- | recording.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recording.c b/recording.c index cefbef02..8ee26c8a 100644 --- a/recording.c +++ b/recording.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: recording.c 1.105 2005/05/28 10:04:24 kls Exp $ + * $Id: recording.c 1.106 2005/05/28 11:36:14 kls Exp $ */ #include "recording.h" @@ -228,7 +228,7 @@ cRecordingInfo::cRecordingInfo(const cEvent *Event) ownEvent = NULL; } else - event = ownEvent = new cEvent(NULL, 0); + event = ownEvent = new cEvent(0); } cRecordingInfo::~cRecordingInfo() |