diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2010-06-08 13:36:59 +0200 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2010-06-08 14:33:17 +0200 |
| commit | 6667d88310f66513676c842afe91a2e13dadefaa (patch) | |
| tree | ab492883492f00f2f9f49bcc0436922efd0173d3 /lib/base/estring.cpp | |
| parent | 45c627a80e5387e29aa9c7ca071d310cd3a7e823 (diff) | |
| download | enigma2-6667d88310f66513676c842afe91a2e13dadefaa.tar.gz enigma2-6667d88310f66513676c842afe91a2e13dadefaa.zip | |
fix compiler warnings
Diffstat (limited to 'lib/base/estring.cpp')
| -rw-r--r-- | lib/base/estring.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/base/estring.cpp b/lib/base/estring.cpp index e7dc2bec..f2ac7325 100644 --- a/lib/base/estring.cpp +++ b/lib/base/estring.cpp @@ -424,7 +424,7 @@ std::string convertDVBUTF8(const unsigned char *data, int len, int table, int ts break; } - bool useTwoCharMapping = !table || tsidonid && encodingHandler.getTransponderUseTwoCharMapping(tsidonid); + bool useTwoCharMapping = !table || (tsidonid && encodingHandler.getTransponderUseTwoCharMapping(tsidonid)); if (useTwoCharMapping && table == 5) { // i hope this dont break other transponders which realy use ISO8859-5 and two char byte mapping... // eDebug("Cyfra / Cyfrowy Polsat HACK... override given ISO8859-5 with ISO6397"); |
