summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-03-26 14:12:08 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2006-03-26 14:12:08 +0200
commit3dbd45235b059323589c5bdb7c3ef90319637906 (patch)
treeec582f9a95a53f2b6308d30dde804638e6309b99
parent5c90a6eba3ead9dd359176e9865e7df8b3c716d5 (diff)
downloadvdr-3dbd45235b059323589c5bdb7c3ef90319637906.tar.gz
vdr-3dbd45235b059323589c5bdb7c3ef90319637906.tar.bz2
Fixed some #include sequences
-rw-r--r--HISTORY1
-rw-r--r--epg.c6
-rw-r--r--pat.h4
-rw-r--r--receiver.c4
-rw-r--r--spu.c4
5 files changed, 10 insertions, 9 deletions
diff --git a/HISTORY b/HISTORY
index 2acd22f7..f36bce37 100644
--- a/HISTORY
+++ b/HISTORY
@@ -4451,3 +4451,4 @@ Video Disk Recorder Revision History
or via SVDRP/PUTE to avoid problems with double EPG events.
- The 'running status' of EPG events is now only set to SI::RunningStatusNotRunning
for events before the present event.
+- Fixed some #include sequences.
diff --git a/epg.c b/epg.c
index bf97a69c..987efb9c 100644
--- a/epg.c
+++ b/epg.c
@@ -7,14 +7,14 @@
* 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.69 2006/03/26 13:47:29 kls Exp $
+ * $Id: epg.c 1.70 2006/03/26 14:06:11 kls Exp $
*/
#include "epg.h"
-#include "libsi/si.h"
-#include "timers.h"
#include <ctype.h>
#include <time.h>
+#include "libsi/si.h"
+#include "timers.h"
#define RUNNINGSTATUSTIMEOUT 30 // seconds before the running status is considered unknown
diff --git a/pat.h b/pat.h
index a7f46357..6246cc0c 100644
--- a/pat.h
+++ b/pat.h
@@ -4,14 +4,14 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: pat.h 1.4 2004/03/07 16:22:01 kls Exp $
+ * $Id: pat.h 1.5 2006/03/26 14:09:43 kls Exp $
*/
#ifndef __PAT_H
#define __PAT_H
-#include "filter.h"
#include <stdint.h>
+#include "filter.h"
#define MAXPMTENTRIES 64
diff --git a/receiver.c b/receiver.c
index 2fc36c9f..ddaafefd 100644
--- a/receiver.c
+++ b/receiver.c
@@ -4,12 +4,12 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: receiver.c 1.4 2005/01/16 14:03:01 kls Exp $
+ * $Id: receiver.c 1.5 2006/03/26 14:07:21 kls Exp $
*/
+#include "receiver.h"
#include <stdarg.h>
#include <stdio.h>
-#include "receiver.h"
#include "tools.h"
cReceiver::cReceiver(int Ca, int Priority, int Pid, const int *Pids1, const int *Pids2, const int *Pids3)
diff --git a/spu.c b/spu.c
index ccdcc390..9ca25a15 100644
--- a/spu.c
+++ b/spu.c
@@ -6,11 +6,11 @@
* This code is distributed under the terms and conditions of the
* GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * $Id: spu.c 1.1 2002/09/08 14:17:41 kls Exp $
+ * $Id: spu.c 1.2 2006/03/26 14:07:59 kls Exp $
*/
-#include <inttypes.h>
#include "spu.h"
+#include <inttypes.h>
// -- cSpuDecoder ----------------
/*