summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2008-02-16 16:12:21 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2008-02-16 16:12:21 +0100
commit28a82b318686d157135e2a6133b12490a72d3c2e (patch)
tree2a30c0beace6ff6df02db8f77111ea5a2ef5df0b
parent1a0beec1bf07e6a12c4030977ed915b55126803b (diff)
downloadvdr-28a82b318686d157135e2a6133b12490a72d3c2e.tar.gz
vdr-28a82b318686d157135e2a6133b12490a72d3c2e.tar.bz2
Added missing #include <limits.h> to epg.c and menuitems.h
-rw-r--r--CONTRIBUTORS1
-rw-r--r--HISTORY1
-rw-r--r--epg.c3
-rw-r--r--menuitems.h3
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
diff --git a/HISTORY b/HISTORY
index bfe83e74..991f76a0 100644
--- a/HISTORY
+++ b/HISTORY
@@ -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ä).
diff --git a/epg.c b/epg.c
index 37a0553c..e01a7827 100644
--- a/epg.c
+++ b/epg.c
@@ -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;