diff options
author | Jochen Dolze <vdr@dolze.de> | 2009-01-08 10:30:47 +0100 |
---|---|---|
committer | Jochen Dolze <vdr@dolze.de> | 2009-01-08 10:30:47 +0100 |
commit | 6fb31a9477d93e019b0a2b4ef8457288ab0a40f4 (patch) | |
tree | ec1be57a98dca46122f3c4db262f9222c5cb3bd4 /global.h | |
parent | c232d074e05316a418320b5c5027aa68d53bc74a (diff) | |
download | vdr-plugin-infosatepg-6fb31a9477d93e019b0a2b4ef8457288ab0a40f4.tar.gz vdr-plugin-infosatepg-6fb31a9477d93e019b0a2b4ef8457288ab0a40f4.tar.bz2 |
Fixed SVDRP segfault
Improved channel chooser again
Diffstat (limited to 'global.h')
-rw-r--r-- | global.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -130,11 +130,11 @@ public: dsyslog("infosatepg: time=%i",Time); if (Time==-1) return; if (wakeuptime!=-1) return; // already set + wakeuptime=Time; int hour,minute; hour=(int) (wakeuptime/100); minute=wakeuptime-(hour*100); isyslog("infosatepg: wakeup set to %02i:%02i", hour,minute); - wakeuptime=Time; } int WakeupTime() { |