mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-09-03 19:01:25 +02:00
remove unused and some clang compil fixes
This commit is contained in:
@@ -2141,7 +2141,7 @@ std::string convertDVBUTF8(const char *data, int len, int table, int tsidonid)
|
||||
res[t++]=char(code);
|
||||
else if((table == 5) && (code == 0x8A))
|
||||
res[t++]= 0x20;
|
||||
else if ((code == 0x8A))
|
||||
else if (code == 0x8A)
|
||||
res[t++]= '\n'; // 0x8a is vertical tab. Just use newline for now.
|
||||
else if((code >= 0x80) && (code <= 0x9F))
|
||||
continue;
|
||||
|
Reference in New Issue
Block a user