summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2015-05-13 20:29:27 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2015-06-29 14:18:14 -0400
commit3adfa9ef5746c09985f110b73dfd85a9768bb395 (patch)
tree079ffc1909d8f43a9718865f7c91dfca61654940
parent943394a49aa1a791b36eba4af6a48ed41c960f32 (diff)
minor fix for wavesaudio backend after earlier changes + merge/meld madness
-rw-r--r--libs/backends/wavesaudio/waves_audiobackend.cc4
1 files 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);