aboutsummaryrefslogtreecommitdiff
path: root/lib/dvb/dvbtime.cpp
diff options
context:
space:
mode:
authorAndreas Oberritter <obi@opendreambox.org>2010-03-31 18:45:47 +0200
committerAndreas Oberritter <obi@opendreambox.org>2010-04-26 12:28:25 +0200
commite30f6f65d97d751e8e9a45171f7806737b4ecc41 (patch)
tree172e0be3fc1b773e4b39ffdb71fa9a15e5ba4871 /lib/dvb/dvbtime.cpp
parenta2ef0a242972e70e4229441ea94f7712fcf66aff (diff)
downloadenigma2-e30f6f65d97d751e8e9a45171f7806737b4ecc41.tar.gz
enigma2-e30f6f65d97d751e8e9a45171f7806737b4ecc41.zip
add missing parentheses
Diffstat (limited to 'lib/dvb/dvbtime.cpp')
-rw-r--r--lib/dvb/dvbtime.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dvb/dvbtime.cpp b/lib/dvb/dvbtime.cpp
index bb6b94b0..26b6767c 100644
--- a/lib/dvb/dvbtime.cpp
+++ b/lib/dvb/dvbtime.cpp
@@ -111,7 +111,7 @@ void TDT::ready(int error)
int TDT::createTable(unsigned int nr, const __u8 *data, unsigned int max)
{
- if ( data && data[0] == 0x70 || data[0] == 0x73 )
+ if ( data && (data[0] == 0x70 || data[0] == 0x73 ))
{
int length = ((data[1] & 0x0F) << 8) | data[2];
if ( length >= 5 )