Browse Source

Use jack_free instead of free in inprocess.c.

tags/v1.9.10
Stephane Letz 11 years ago
parent
commit
2e6344a32b
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      example-clients/inprocess.c

+ 2
- 2
example-clients/inprocess.c View File

@@ -89,7 +89,7 @@ jack_initialize (jack_client_t *client, const char *load_init)
fprintf (stderr, "cannot connect input ports\n");
}
free (ports);
jack_free (ports);
ports = jack_get_ports (client, NULL, NULL,
JackPortIsPhysical|JackPortIsInput);
@@ -102,7 +102,7 @@ jack_initialize (jack_client_t *client, const char *load_init)
fprintf (stderr, "cannot connect output ports\n");
}
free (ports);
jack_free (ports);

return 0; /* success */
}


Loading…
Cancel
Save