diff options
author | Tanu Kaskinen <tanuk@iki.fi> | 2013-02-12 21:36:55 +0200 |
---|---|---|
committer | Tanu Kaskinen <tanuk@iki.fi> | 2013-02-16 01:15:27 +0200 |
commit | 061878b5a47ed9aa05d12430b039874b63c29a84 (patch) | |
tree | dee2fb641e3a9e1c2af4fa00441bd07c8332a754 /src/pulsecore/client.c | |
parent | 43e786800850938fd68877634ce6288b04bd45a7 (diff) |
idxset: Use pa_free_cb_t instead of pa_free2_cb_t
There were no users for the userdata pointer.
Diffstat (limited to 'src/pulsecore/client.c')
-rw-r--r-- | src/pulsecore/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pulsecore/client.c b/src/pulsecore/client.c index c956b1016..a8fde9fe8 100644 --- a/src/pulsecore/client.c +++ b/src/pulsecore/client.c @@ -103,9 +103,9 @@ void pa_client_free(pa_client *c) { pa_subscription_post(c->core, PA_SUBSCRIPTION_EVENT_CLIENT|PA_SUBSCRIPTION_EVENT_REMOVE, c->index); pa_assert(pa_idxset_isempty(c->sink_inputs)); - pa_idxset_free(c->sink_inputs, NULL, NULL); + pa_idxset_free(c->sink_inputs, NULL); pa_assert(pa_idxset_isempty(c->source_outputs)); - pa_idxset_free(c->source_outputs, NULL, NULL); + pa_idxset_free(c->source_outputs, NULL); pa_proplist_free(c->proplist); pa_xfree(c->driver); |