mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
fixes for 98% of all the warnings/errors reported by OS X gcc on tiger
git-svn-id: svn://localhost/ardour2/branches/3.0@10179 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
15e390ebe5
commit
0938a42440
100 changed files with 239 additions and 224 deletions
|
|
@ -96,10 +96,9 @@ AudioRegionEditor::AudioRegionEditor (Session* s, boost::shared_ptr<AudioRegion>
|
|||
|
||||
AudioRegionEditor::~AudioRegionEditor ()
|
||||
{
|
||||
pthread_cancel_one (_peak_amplitude_thread_handle);
|
||||
void* v;
|
||||
int const r = pthread_join (_peak_amplitude_thread_handle, &v);
|
||||
assert (r == 0);
|
||||
pthread_cancel_one (_peak_amplitude_thread_handle);
|
||||
pthread_join (_peak_amplitude_thread_handle, &v);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue