mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-27 23:42:51 +02:00
Some compiler error fixes.
git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@592 e54a6e83-5905-42d5-8d5c-058d10e6a962
Origin commit data
------------------
Branch: ni/coolstream
Commit: ef636b89c1
Author: nightshad <nightshad@e54a6e83-5905-42d5-8d5c-058d10e6a962>
Date: 2010-05-20 (Thu, 20 May 2010)
------------------
This commit was generated by Migit
This commit is contained in:
@@ -607,13 +607,13 @@ printf("CSubtitleChangeExec::exec: action %s\n", actionKey.c_str());
|
||||
return menu_return::RETURN_EXIT;
|
||||
}
|
||||
if(!strncmp(actionKey.c_str(), "DVB", 3)) {
|
||||
char * pidptr = strchr(actionKey.c_str(), ':');
|
||||
const char *pidptr = strchr(actionKey.c_str(), ':');
|
||||
int pid = atoi(pidptr+1);
|
||||
tuxtx_stop_subtitle();
|
||||
dvbsub_pause();
|
||||
dvbsub_start(pid);
|
||||
} else {
|
||||
char * ptr = strchr(actionKey.c_str(), ':');
|
||||
const char *ptr = strchr(actionKey.c_str(), ':');
|
||||
ptr++;
|
||||
int pid = atoi(ptr);
|
||||
ptr = strchr(ptr, ':');
|
||||
|
Reference in New Issue
Block a user