diff options
author | Miller Puckette <millerpuckette@users.sourceforge.net> | 2007-07-24 04:53:36 +0000 |
---|---|---|
committer | Miller Puckette <millerpuckette@users.sourceforge.net> | 2007-07-24 04:53:36 +0000 |
commit | 36176519fe966423a90774fcd64527142cbbb172 (patch) | |
tree | b03a5172fc30f3776236c46cc4b672fc0e0af69b /pd/src | |
parent | 80cacf4b9486cad217e2247c3870aba74d9e3b13 (diff) |
Untested attempt to fix compilation problems in s_audio_jack.c
svn path=/trunk/; revision=8229
Diffstat (limited to 'pd/src')
-rw-r--r-- | pd/src/s_audio_jack.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pd/src/s_audio_jack.c b/pd/src/s_audio_jack.c index 7f29118e..a6df3968 100644 --- a/pd/src/s_audio_jack.c +++ b/pd/src/s_audio_jack.c @@ -194,7 +194,7 @@ static int jack_connect_ports(char* client) } -void jack_error(const char *desc) { +void jack_error_callback(const char *desc) { return; } @@ -244,7 +244,7 @@ jack_open_audio(int inchans, int outchans, int rate) jack_set_process_callback (jack_client, process, 0); - jack_set_error_function (jack_error); + jack_set_error_function (jack_error_callback); #ifdef JACK_XRUN jack_set_xrun_callback (jack_client, jack_xrun, NULL); |