Fixed OpenFilter return value.

This commit is contained in:
Rolf Ahrenberg 2007-09-14 16:17:52 +00:00
parent c5cba58f9f
commit 32288855b8
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
*
* See the README file for copyright information and how to reach the author.
*
* $Id: device.c,v 1.8 2007/09/14 16:10:44 rahrenbe Exp $
* $Id: device.c,v 1.9 2007/09/14 16:17:52 rahrenbe Exp $
*/
#include "common.h"
@ -141,7 +141,7 @@ bool cIptvDevice::SetPid(cPidHandle *Handle, int Type, bool On)
int cIptvDevice::OpenFilter(u_short Pid, u_char Tid, u_char Mask)
{
debug("cIptvDevice::OpenFilter(): Pid=%d Tid=%02X Mask=%02X\n", Pid, Tid, Mask);
return 0;
return -1;
}
bool cIptvDevice::OpenDvr(void)