mirror of https://github.com/procxx/kepka.git
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:
parent
b6df430aa8
commit
0d013603bd
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue