diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2017-05-28 13:08:09 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2017-05-28 13:08:09 +0200 |
commit | 2751e239eba118a319c1c8518fb199dc5d4114e4 (patch) | |
tree | 411481a6776b71cbd363680827a6c1b17bc3ebe0 /epg.h | |
parent | 0af3ed548c86b5b2670fbf5610ee41d36b48761a (diff) | |
download | vdr-2751e239eba118a319c1c8518fb199dc5d4114e4.tar.gz vdr-2751e239eba118a319c1c8518fb199dc5d4114e4.tar.bz2 |
Fixed the locking sequence when dumping EPG data
Diffstat (limited to 'epg.h')
-rw-r--r-- | epg.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -7,7 +7,7 @@ * Original version (as used in VDR before 1.3.0) written by * Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>. * - * $Id: epg.h 4.6 2017/05/09 12:15:14 kls Exp $ + * $Id: epg.h 4.7 2017/05/28 12:59:20 kls Exp $ */ #ifndef __EPG_H @@ -185,7 +185,7 @@ public: const cEvent *GetFollowingEvent(void) const; const cEvent *GetEvent(tEventID EventID, time_t StartTime = 0) const; const cEvent *GetEventAround(time_t Time) const; - void Dump(FILE *f, const char *Prefix = "", eDumpMode DumpMode = dmAll, time_t AtTime = 0) const; + void Dump(const cChannels *Channels, FILE *f, const char *Prefix = "", eDumpMode DumpMode = dmAll, time_t AtTime = 0) const; static bool Read(FILE *f, cSchedules *Schedules); }; |