aboutsummaryrefslogtreecommitdiff
path: root/lib/dvb/frontend.cpp
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-22 03:05:23 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-22 03:05:23 +0000
commitf05081e0c3880e537a9c1bd8ce98e8f0415d2ff3 (patch)
treea6e6d8f1ed6a1afb27b0e2aa194fa64309d0d08c /lib/dvb/frontend.cpp
parent00ae28e6c92cdac5687c82bc9aa3d2ca999b354f (diff)
downloadenigma2-f05081e0c3880e537a9c1bd8ce98e8f0415d2ff3.tar.gz
enigma2-f05081e0c3880e537a9c1bd8ce98e8f0415d2ff3.zip
fix string-length to correctly display the frontend type
Diffstat (limited to 'lib/dvb/frontend.cpp')
-rw-r--r--lib/dvb/frontend.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dvb/frontend.cpp b/lib/dvb/frontend.cpp
index 75824f03..4c5317e0 100644
--- a/lib/dvb/frontend.cpp
+++ b/lib/dvb/frontend.cpp
@@ -275,7 +275,7 @@ eDVBFrontend::eDVBFrontend(int adap, int fe, int &ok): m_type(-1), m_fe(fe), m_c
ok = 0;
return;
}
- eDebug("detected %s frontend", "satellite\0cable\0 terrestrial"+fe_info.type*9);
+ eDebug("detected %s frontend", "satellite\0cable\0 terrestrial"+fe_info.type*10);
ok = 1;
m_sn = new eSocketNotifier(eApp, m_fd, eSocketNotifier::Read);