Added missing #include <limits.h> to epg.c and menuitems.h

This commit is contained in:
Klaus Schmidinger 2008-02-16 16:12:21 +01:00
parent 1a0beec1bf
commit 28a82b3186
4 changed files with 6 additions and 2 deletions

View File

@ -1749,6 +1749,7 @@ Ville Skytt
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

View File

@ -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ä).

3
epg.c
View File

@ -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"

View File

@ -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;