summaryrefslogtreecommitdiff
path: root/eit.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2003-02-02 15:49:52 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2003-02-02 15:49:52 +0100
commitb7777e230c82ddc9f7ce6bd309ac70cc9216e834 (patch)
treefa7e33ac7fd22779a192f4da5fb9b1ee25a5ec71 /eit.c
parent5693873b9b010124c33b8bc725fe178c3ca3a4f1 (diff)
downloadvdr-b7777e230c82ddc9f7ce6bd309ac70cc9216e834.tar.gz
vdr-b7777e230c82ddc9f7ce6bd309ac70cc9216e834.tar.bz2
Improved CAM handling1.1.23
Diffstat (limited to 'eit.c')
-rw-r--r--eit.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/eit.c b/eit.c
index 174ad6d4..eebe82c7 100644
--- a/eit.c
+++ b/eit.c
@@ -16,7 +16,7 @@
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
- * $Id: eit.c 1.64 2003/01/26 12:21:15 kls Exp $
+ * $Id: eit.c 1.65 2003/02/02 15:41:03 kls Exp $
***************************************************************************/
#include "eit.h"
@@ -1349,7 +1349,7 @@ void cSIProcessor::Action()
/** Add a filter with packet identifier pid and
table identifer tid */
-bool cSIProcessor::AddFilter(u_char pid, u_char tid)
+bool cSIProcessor::AddFilter(unsigned short pid, u_char tid)
{
dmx_sct_filter_params sctFilterParams;
memset(&sctFilterParams, 0, sizeof(sctFilterParams));
@@ -1390,7 +1390,7 @@ bool cSIProcessor::AddFilter(u_char pid, u_char tid)
return false;
}
-bool cSIProcessor::DelFilter(u_char pid, u_char tid)
+bool cSIProcessor::DelFilter(unsigned short pid, u_char tid)
{
for (int a = 0; a < MAX_FILTERS; a++)
{