summaryrefslogtreecommitdiff
path: root/epg.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2012-05-13 13:46:56 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2012-05-13 13:46:56 +0200
commit4f889749b3d4a6f3e0c24cc03bd4e432c6638cdf (patch)
tree7b86f4142b8075b0e15eb17c2894309113054084 /epg.h
parent5f93700e07382ec2d1ef735f36f4f988f0318ad2 (diff)
downloadvdr-4f889749b3d4a6f3e0c24cc03bd4e432c6638cdf.tar.gz
vdr-4f889749b3d4a6f3e0c24cc03bd4e432c6638cdf.tar.bz2
Fixed a mismatched 'delete' in cSchedules::SetEpgDataFileName()
Diffstat (limited to 'epg.h')
-rw-r--r--epg.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/epg.h b/epg.h
index e4cec9b9..fc1e410f 100644
--- a/epg.h
+++ b/epg.h
@@ -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 2.8 2012/03/10 13:50:10 kls Exp $
+ * $Id: epg.h 2.9 2012/05/13 13:45:50 kls Exp $
*/
#ifndef __EPG_H
@@ -192,7 +192,7 @@ class cSchedules : public cList<cSchedule> {
private:
cRwLock rwlock;
static cSchedules schedules;
- static const char *epgDataFileName;
+ static char *epgDataFileName;
static time_t lastCleanup;
static time_t lastDump;
static time_t modified;