summaryrefslogtreecommitdiff
path: root/device.c
diff options
context:
space:
mode:
authorHolger Steinhaus <hsteinhaus@gmx.de>2015-11-12 08:56:47 +0100
committerHolger Steinhaus <hsteinhaus@gmx.de>2015-11-12 09:22:23 +0100
commitc6f1ec91cbf6f608493bd61f1f508d9e045f9339 (patch)
treee7fade50de3da5082d5da8ff96da6be35efc6237 /device.c
parenta40106d5c33463fb2071881db564a39f302f5163 (diff)
downloadvdr-plugin-mcli-c6f1ec91cbf6f608493bd61f1f508d9e045f9339.tar.gz
vdr-plugin-mcli-c6f1ec91cbf6f608493bd61f1f508d9e045f9339.tar.bz2
fixed more "uninitialized use" warnings
Diffstat (limited to 'device.c')
-rw-r--r--device.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/device.c b/device.c
index e366a05..676750e 100644
--- a/device.c
+++ b/device.c
@@ -198,7 +198,7 @@ bool cMcliDevice::SetTempDisable (bool now)
}
//#endif
// printf("Device %d Receiving %d Priority %d\n",CardIndex () + 1, Receiving (true), Priority());
- if(!Receiving (true) && (((time(NULL)-m_last) >= m_disabletimeout)) || now) {
+ if((!Receiving (true) && (((time(NULL)-m_last) >= m_disabletimeout)) ) || now) {
recv_stop (m_r);
m_tuned = false;
if(GetCaEnable()) {