Skip to content
Snippets Groups Projects
Commit 7c314414 authored by Miller Puckette's avatar Miller Puckette
Browse files

fix s_audio_jack.c name clash

parent c2f0c369
No related branches found
No related tags found
No related merge requests found
...@@ -194,7 +194,7 @@ static int jack_connect_ports(char* client) ...@@ -194,7 +194,7 @@ static int jack_connect_ports(char* client)
} }
void jack_error_callback(const char *desc) { void pd_jack_error_callback(const char *desc) {
return; return;
} }
...@@ -244,7 +244,7 @@ jack_open_audio(int inchans, int outchans, int rate) ...@@ -244,7 +244,7 @@ jack_open_audio(int inchans, int outchans, int rate)
jack_set_process_callback (jack_client, process, 0); jack_set_process_callback (jack_client, process, 0);
jack_set_error_function (jack_error_callback); jack_set_error_function (pd_jack_error_callback);
#ifdef JACK_XRUN #ifdef JACK_XRUN
jack_set_xrun_callback (jack_client, jack_xrun, NULL); jack_set_xrun_callback (jack_client, jack_xrun, NULL);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment