# HG changeset patch # User Chris Cannam # Date 1196337729 0 # Node ID 34fef5e68a76e555be8b4d8974eef40652371b46 # Parent eeb48693db968246e2073790d7fe2972efc337c4 * Static build fixes diff -r eeb48693db96 -r 34fef5e68a76 audioio/AudioJACKTarget.cpp --- a/audioio/AudioJACKTarget.cpp Thu Nov 29 10:43:54 2007 +0000 +++ b/audioio/AudioJACKTarget.cpp Thu Nov 29 12:02:09 2007 +0000 @@ -69,9 +69,9 @@ jack_options_t options, jack_status_t *status, ...) { - typedef jack_client_t (*func)(const char *client_name, - jack_options_t options, - jack_status_t *status, ...); + typedef jack_client_t *(*func)(const char *client_name, + jack_options_t options, + jack_status_t *status, ...); void *s = symbol("jack_client_open"); if (!s) return 0; func f = (func)s;