summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhorchi <vdr@jwendel.de>2017-06-10 17:26:34 +0200
committerhorchi <vdr@jwendel.de>2017-06-10 17:26:34 +0200
commit5e865739392dba0929e8b416f18f9688a56c86e7 (patch)
tree13ef113ffcde41135ef8cdd3b455212754716e61
parent2685239d3331e50ceebeaf03814aff883c2fa15d (diff)
downloadvdr-plugin-epg2vdr-5e865739392dba0929e8b416f18f9688a56c86e7.tar.gz
vdr-plugin-epg2vdr-5e865739392dba0929e8b416f18f9688a56c86e7.tar.bz2
2017-06-10: version 1.1.66 (horchi)\n - Bugfix: Fixed vdr 2.2.0 compile problem (thx to Alexander Grothe)\n\n1.1.66
-rw-r--r--HISTORY.h7
-rw-r--r--timer.c4
2 files changed, 9 insertions, 2 deletions
diff --git a/HISTORY.h b/HISTORY.h
index 831fc8f..0ef410d 100644
--- a/HISTORY.h
+++ b/HISTORY.h
@@ -5,8 +5,8 @@
*
*/
-#define _VERSION "1.1.65"
-#define VERSION_DATE "09.06.2017"
+#define _VERSION "1.1.66"
+#define VERSION_DATE "10.06.2017"
#define DB_API 4
@@ -19,6 +19,9 @@
/*
* ------------------------------------
+2017-06-10: version 1.1.66 (horchi)
+ - Bugfix: Fixed vdr 2.2.0 compile problem (thx to Alexander Grothe)
+
2017-06-09: version 1.1.65 (horchi)
- Bugfix: Fixed another lock sequence
diff --git a/timer.c b/timer.c
index 78d848f..9cc3e62 100644
--- a/timer.c
+++ b/timer.c
@@ -266,7 +266,11 @@ int cUpdate::performTimerJobs()
}
else
{
+#if APIVERSNUM >= 20301
const cChannel* channel = channels->GetByChannelID(channelId);
+#else
+ cChannel* channel = channels->GetByChannelID(channelId);
+#endif
timer = new cTimer(no, no, channel); // timer without a event
}