eitd/edvbstring.cpp: fix compile

Origin commit data
------------------
Branch: ni/coolstream
Commit: e90a71de90
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2013-06-10 (Mon, 10 Jun 2013)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
[CST] Focus
2013-06-10 19:06:28 +04:00
parent 95ce9e188d
commit 00227c63d9

View File

@@ -2110,7 +2110,7 @@ std::string convertDVBUTF8(const char *data, int len, int table, int tsidonid)
// GB2312 -> Unicode
if (gb2312 && !code) {
if (data[i] >= 0xA1) {
code = GB2312UNI[((data[i] << 8) | data[i + 1]) - 0xA100];
code = cGB2312UNI[((data[i] << 8) | data[i + 1]) - 0xA100];
i += 2;
}
}