9e62d5e750
JACK is a low-latency audio server, written for POSIX conformant operating systems. It can connect a number of different applications to an audio device, as well as allowing them to share audio between themselves. Its clients can run in their own processes (ie. as normal applications), or can they can run within the JACK server (ie. as a "plugin"). JACK was designed from the ground up for professional audio work, and its design focuses on two key areas: synchronous execution of all clients, and low latency operation. ok kili@
13 lines
537 B
Plaintext
13 lines
537 B
Plaintext
$OpenBSD: patch-libjack_intclient_c,v 1.1.1.1 2008/03/24 03:01:28 jakemsr Exp $
|
|
--- libjack/intclient.c.orig Sun Mar 16 05:24:53 2008
|
|
+++ libjack/intclient.c Sun Mar 16 05:25:45 2008
|
|
@@ -167,7 +167,7 @@ jack_internal_client_load (jack_client_t *client,
|
|
{
|
|
va_list ap;
|
|
va_start(ap, status);
|
|
- jack_intclient_t* res = jack_internal_client_load_aux(client, client_name, options, status, ap);
|
|
+ jack_intclient_t res = jack_internal_client_load_aux(client, client_name, options, status, ap);
|
|
va_end(ap);
|
|
return res;
|
|
}
|