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:
seife
2011-05-07 09:06:03 +00:00
parent 59259b3d43
commit e9fb741134
2 changed files with 3 additions and 3 deletions

View File

@@ -174,7 +174,7 @@ int dvbsub_close()
pthread_mutex_unlock(&readerMutex);
pthread_join(threadReader, NULL);
threadReader = NULL;
threadReader = 0;
}
if(threadDvbsub) {
dvbsub_running = false;
@@ -184,7 +184,7 @@ int dvbsub_close()
pthread_mutex_unlock(&packetMutex);
pthread_join(threadDvbsub, NULL);
threadDvbsub = NULL;
threadDvbsub = 0;
}
printf("[dvb-sub] stopped\n");