mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 19:56:31 +01:00
fix “invalid use of incomplete type jack_client_t”
introduced in 66eef25
This commit is contained in:
parent
fe0254344f
commit
0018ee2b02
1 changed files with 1 additions and 1 deletions
|
|
@ -841,7 +841,7 @@ JACKAudioBackend::join_process_threads ()
|
|||
#if defined(USING_JACK2_EXPANSION_OF_JACK_API) || defined(PLATFORM_WINDOWS)
|
||||
// jack_client is not used by JACK2's implementation
|
||||
// also jack_client_close() leaves threads active
|
||||
if (jack_client_stop_thread ((jack_client_t)NULL, *i) != 0)
|
||||
if (jack_client_stop_thread (NULL, *i) != 0)
|
||||
#else
|
||||
void* status;
|
||||
if (pthread_join (*i, &status) != 0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue