changeset 67:34fef5e68a76 1.2-stable

* Static build fixes
author Chris Cannam
date Thu, 29 Nov 2007 12:02:09 +0000
parents eeb48693db96
children 1a7d804c9f8d
files audioio/AudioJACKTarget.cpp
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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;