diff options
author | Frank Neumann <fnu@yavdr.org> | 2017-05-01 19:52:53 +0200 |
---|---|---|
committer | Frank Neumann <fnu@yavdr.org> | 2017-05-01 19:52:53 +0200 |
commit | bbe36e39a2b65fb4eddb78696606022a7fa672c8 (patch) | |
tree | bf61e07d9bcbdff521afa790268a4ceb557fbd9c /pending_notifications.c | |
parent | d2a2b882daac2f60108e599f98753a3c27f2ca7f (diff) | |
download | vdr-plugin-epgsearch-bbe36e39a2b65fb4eddb78696606022a7fa672c8.tar.gz vdr-plugin-epgsearch-bbe36e39a2b65fb4eddb78696606022a7fa672c8.tar.bz2 |
Add another fix for VDR 2.3.4+, eventid is nowadays 32bit (thx rofafor@vdr-portal.de)
Diffstat (limited to 'pending_notifications.c')
-rw-r--r-- | pending_notifications.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pending_notifications.c b/pending_notifications.c index 8fe3334..8d3046d 100644 --- a/pending_notifications.c +++ b/pending_notifications.c @@ -62,7 +62,7 @@ bool cPendingNotification::Read(FILE *f) tEventID EventID; int Type, TimerMod, SearchID; time_t Start; - int n = sscanf(t, "%d %hu %d %d %ld", &Type, &EventID, &TimerMod, &SearchID, &Start); + int n = sscanf(t, "%d %u %d %d %ld", &Type, &EventID, &TimerMod, &SearchID, &Start); if (n == 5) { p = new cPendingNotification; if (p) |