proplist: pa_proplist_contains: constify proplist pointer

This commit is contained in:
Lyndon Brown 2018-05-27 04:35:33 +01:00 committed by Arun Raghavan
parent 25b55284db
commit 5a146049df
2 changed files with 2 additions and 2 deletions

View file

@ -632,7 +632,7 @@ fail:
return NULL;
}
int pa_proplist_contains(pa_proplist *p, const char *key) {
int pa_proplist_contains(const pa_proplist *p, const char *key) {
pa_assert(p);
pa_assert(key);