mirror of
https://github.com/rofafor/vdr-plugin-satip.git
synced 2023-10-10 13:37:42 +02:00
Fixed a wrong parameter type.
This commit is contained in:
parent
65a2158051
commit
184ddf2a53
2
server.c
2
server.c
@ -150,7 +150,7 @@ cSatipServer *cSatipServers::Find(int sourceP, int transponderP, int systemP)
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
void cSatipServers::SetTransponder(cSatipServer *serverP, bool transponderP)
|
void cSatipServers::SetTransponder(cSatipServer *serverP, int transponderP)
|
||||||
{
|
{
|
||||||
for (cSatipServer *s = First(); s; s = Next(s)) {
|
for (cSatipServer *s = First(); s; s = Next(s)) {
|
||||||
if (s == serverP) {
|
if (s == serverP) {
|
||||||
|
2
server.h
2
server.h
@ -78,7 +78,7 @@ class cSatipServers : public cList<cSatipServer> {
|
|||||||
public:
|
public:
|
||||||
cSatipServer *Find(cSatipServer *serverP);
|
cSatipServer *Find(cSatipServer *serverP);
|
||||||
cSatipServer *Find(int sourceP, int transponderP, int systemP);
|
cSatipServer *Find(int sourceP, int transponderP, int systemP);
|
||||||
void SetTransponder(cSatipServer *serverP, bool transponderP);
|
void SetTransponder(cSatipServer *serverP, int transponderP);
|
||||||
cSatipServer *Update(cSatipServer *serverP);
|
cSatipServer *Update(cSatipServer *serverP);
|
||||||
void Use(cSatipServer *serverP, bool onOffP);
|
void Use(cSatipServer *serverP, bool onOffP);
|
||||||
void Cleanup(uint64_t intervalMsP = 0);
|
void Cleanup(uint64_t intervalMsP = 0);
|
||||||
|
Loading…
Reference in New Issue
Block a user