movieplayer: fix invalid type

Origin commit data
------------------
Branch: ni/coolstream
Commit: 878d8a55be
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2013-09-30 (Mon, 30 Sep 2013)


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

------------------
This commit was generated by Migit
This commit is contained in:
Stefan Seyfried
2013-09-30 20:48:00 +02:00
committed by Jacek Jendrzej
parent d23530e59a
commit 6e501dfcad

View File

@@ -1483,7 +1483,7 @@ void CMoviePlayerGui::showSubtitle(neutrino_msg_data_t data)
}
//printf("title: [%s]\n", txt);
std::string str(txt);
unsigned int start = 0, end = 0;
size_t start = 0, end = 0;
/* split string with \N as newline */
std::string delim("\\N");
while ((end = str.find(delim, start)) != string::npos) {