diff options
-rw-r--r-- | CONTRIBUTORS | 1 | ||||
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | epg.c | 3 | ||||
-rw-r--r-- | menuitems.h | 3 |
4 files changed, 6 insertions, 2 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 7af31b22..580331b4 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -1749,6 +1749,7 @@ Ville Skyttä <ville.skytta@iki.fi> for fixing the link to the GPL2 at http://www.gnu.org in vdr.c for making the "Play" key start replay of the selected recording in the Recordings menu + for adding missing #include <limits.h> to epg.c and menuitems.h Steffen Beyer <cpunk@reactor.de> for fixing setting the colored button help after deleting a recording in case the next @@ -5636,3 +5636,4 @@ Video Disk Recorder Revision History - Added cStatus::TimerChange() to inform plugins about changes to the list of timers (based on a patch from Benedikt Elser). - Added new cStatus functions to the 'status' plugin. +- Added missing #include <limits.h> to epg.c and menuitems.h (thanks to Ville Skyttä). @@ -7,11 +7,12 @@ * 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.c 1.82 2007/06/10 12:52:19 kls Exp $ + * $Id: epg.c 1.83 2008/02/16 16:09:12 kls Exp $ */ #include "epg.h" #include <ctype.h> +#include <limits.h> #include <time.h> #include "libsi/si.h" #include "timers.h" diff --git a/menuitems.h b/menuitems.h index 97a59b57..0170f9b5 100644 --- a/menuitems.h +++ b/menuitems.h @@ -4,12 +4,13 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menuitems.h 1.24 2008/02/08 13:48:31 kls Exp $ + * $Id: menuitems.h 1.25 2008/02/16 16:09:58 kls Exp $ */ #ifndef __MENUITEMS_H #define __MENUITEMS_H +#include <limits.h> #include "osdbase.h" extern const char *FileNameChars; |