mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-27 15:32:59 +02:00
fix "converting to non-pointer type 'pthread_t'" compiler warning
pthread_t is - at least on our platform - not a pointer type, but basically an int don't assign NULL but 0 to fix that warning git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@1440 e54a6e83-5905-42d5-8d5c-058d10e6a962
This commit is contained in:
@@ -1548,7 +1548,7 @@ void tuxtx_stop_subtitle()
|
||||
reader_running = 0;
|
||||
if(ttx_sub_thread)
|
||||
pthread_join(ttx_sub_thread, NULL);
|
||||
ttx_sub_thread = NULL;
|
||||
ttx_sub_thread = 0;
|
||||
sub_pid = sub_page = 0;
|
||||
ttx_paused = 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user