mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-31 01:11:12 +02:00
movieplayer: fix invalid type
This commit is contained in:
committed by
Jacek Jendrzej
parent
a0a370047c
commit
878d8a55be
@@ -1483,7 +1483,7 @@ void CMoviePlayerGui::showSubtitle(neutrino_msg_data_t data)
|
|||||||
}
|
}
|
||||||
//printf("title: [%s]\n", txt);
|
//printf("title: [%s]\n", txt);
|
||||||
std::string str(txt);
|
std::string str(txt);
|
||||||
unsigned int start = 0, end = 0;
|
size_t start = 0, end = 0;
|
||||||
/* split string with \N as newline */
|
/* split string with \N as newline */
|
||||||
std::string delim("\\N");
|
std::string delim("\\N");
|
||||||
while ((end = str.find(delim, start)) != string::npos) {
|
while ((end = str.find(delim, start)) != string::npos) {
|
||||||
|
Reference in New Issue
Block a user