diff options
author | Frank Neumann <fnu@yavdr.org> | 2017-05-01 13:36:12 +0200 |
---|---|---|
committer | Frank Neumann <fnu@yavdr.org> | 2017-05-01 13:36:12 +0200 |
commit | 374311f7650d03d2f59cb81a321b7d721e7ce5eb (patch) | |
tree | 9f98dafad40cfc7e532ccb50b30b48342bec7050 | |
parent | 451a53f8a821c7714c95be672c8cccefacd13b13 (diff) | |
download | vdr-plugin-epgsearch-374311f7650d03d2f59cb81a321b7d721e7ce5eb.tar.gz vdr-plugin-epgsearch-374311f7650d03d2f59cb81a321b7d721e7ce5eb.tar.bz2 |
Commit 0001-Fix-warning-in-pending_notifications.c.diff (thx jasminj@vdr-portal.de)
-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 8d3046d..8fe3334 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 %u %d %d %ld", &Type, &EventID, &TimerMod, &SearchID, &Start); + int n = sscanf(t, "%d %hu %d %d %ld", &Type, &EventID, &TimerMod, &SearchID, &Start); if (n == 5) { p = new cPendingNotification; if (p) |