[Commits] : Tuxbox-GIT: apps branch master updated. CVS-Final-51-ga0de98a
Tuxbox Sources
Brought to you by:
dbt1
|
From: Thilo G. <tux...@ne...> - 2013-03-08 07:48:11
|
Project "Tuxbox-GIT: apps":
The branch, master has been updated
via a0de98af3b9ad40ee7d015e5fce203feb84d5f10 (commit)
from 4a7428140c57a6f14ba059019f5983c6eb7c8d28 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit a0de98af3b9ad40ee7d015e5fce203feb84d5f10
Author: Stefan Seyfried <se...@tu...>
Date: Thu Mar 7 22:12:03 2013 +0100
zapit: fix compile with gcc4
diff --git a/dvb/zapit/src/zapit.cpp b/dvb/zapit/src/zapit.cpp
index 1be2bea..c5f8228 100644
--- a/dvb/zapit/src/zapit.cpp
+++ b/dvb/zapit/src/zapit.cpp
@@ -3065,9 +3065,7 @@ void leaveStandby(void)
frontend->setDiseqcRepeats(config.getInt32("diseqcRepeats", 0));
//motorRotationSpeed = scanconfig.getInt32("motorRotationSpeed", 8); // default: 0.8 degrees per second
diseqcType = (diseqc_t)config.getInt32("diseqcType", NO_DISEQC);
- int uni_scr = config.getInt32("uni_scr", 0);
- int uni_qrg = config.getInt32("uni_qrg", 0);
- frontend->setUnicable(uni_scr, uni_qrg);
+ frontend->setUnicable(config.getInt32("uni_scr", 0), config.getInt32("uni_qrg", 0));
frontend->setDiseqcType(diseqcType);
for (unsigned int i = 0; i < MAX_LNBS; i++) {
-----------------------------------------------------------------------
Summary of changes:
dvb/zapit/src/zapit.cpp | 4 +---
1 files changed, 1 insertions(+), 3 deletions(-)
--
Tuxbox-GIT: apps
|