Fix "no return in nonvoid function" error in libtgvoip (#167)

Return nullptr to avoid compile error.

Before this commit these functions:
1. void *AudioInputALSA::StartThread();
2. void *AudioOutputALSA::StartThread()
 - don't return any values. 

Also please note that this fix should be ported after syncing libtgvoip to upstream if these functions still don't return values!

Related to #153.
This commit is contained in:
Alex 2018-06-20 21:33:58 +03:00 committed by GitHub
parent b6df430aa8
commit 0d013603bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -71,6 +71,7 @@ void AudioInputALSA::Stop(){
void* AudioInputALSA::StartThread(void* arg){
((AudioInputALSA*)arg)->RunThread();
return nullptr;
}
void AudioInputALSA::RunThread(){
@ -176,4 +177,4 @@ void AudioInputALSA::EnumerateDevices(std::vector<AudioInputDevice>& devs){
}
dlclose(lib);
}
}

View File

@ -74,6 +74,7 @@ bool AudioOutputALSA::IsPlaying(){
void* AudioOutputALSA::StartThread(void* arg){
((AudioOutputALSA*)arg)->RunThread();
return nullptr;
}
void AudioOutputALSA::RunThread(){
@ -179,4 +180,4 @@ void AudioOutputALSA::EnumerateDevices(std::vector<AudioOutputDevice>& devs){
}
dlclose(lib);
}
}