From e4c94bf12d2425f37c53a7b4da76cd5db988b89e Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Fri, 19 Oct 2018 17:00:25 +0200 Subject: [PATCH] proplist: fix compilation --- src/proplist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proplist.c b/src/proplist.c index 3d94b50ef..457024985 100644 --- a/src/proplist.c +++ b/src/proplist.c @@ -101,7 +101,7 @@ int pa_proplist_setp(pa_proplist *p, const char *pair) idx = pair - t; c = strdup(pair); c[idx] = 0; - pa_properties_sets(p, c, &c[idx]+1); + pa_proplist_sets(p, c, &c[idx]+1); free(c); return 0;