From 3adfa9ef5746c09985f110b73dfd85a9768bb395 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 13 May 2015 20:29:27 -0400 Subject: [PATCH] minor fix for wavesaudio backend after earlier changes + merge/meld madness --- libs/backends/wavesaudio/waves_audiobackend.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/backends/wavesaudio/waves_audiobackend.cc b/libs/backends/wavesaudio/waves_audiobackend.cc index 2a5ddba991..b25f31d84f 100644 --- a/libs/backends/wavesaudio/waves_audiobackend.cc +++ b/libs/backends/wavesaudio/waves_audiobackend.cc @@ -770,8 +770,8 @@ WavesAudioBackend::_audio_device_callback (const float* input_buffer, } if (_main_thread != pthread_self() ) { - std::cerr << "Process thread ID has changed. Expected thread: " << process_id << " current thread: " << pthread_self() << std::dec << " !" << std::endl; - _main_thread = pthread_self(); + std::cerr << "Process thread ID has changed. Expected thread: " << _main_thread << " current thread: " << pthread_self() << std::dec << " !" << std::endl; + _main_thread = pthread_self(); } engine.process_callback (nframes);