3rdparty/portaudio: Fixed inadvertent assignment in PulseAudio callback.

This commit is contained in:
Vas Crabb 2023-10-24 06:39:17 +11:00 committed by GitHub
parent ea3a55c607
commit c936fd8799
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -853,7 +853,7 @@ PaError PaPulseAudio_StartStreamCb( PaStream * s )
pulseaudioState = pa_stream_get_state( stream->outputStream );
PaPulseAudio_UnLock( pulseaudioHostApi->mainloop );
if( pulseaudioState = PA_STREAM_READY )
if( pulseaudioState == PA_STREAM_READY )
{
break;
}