proplist: pa_proplist_get: constify proplist pointer

This commit is contained in:
Lyndon Brown 2018-05-27 02:59:12 +01:00 committed by Arun Raghavan
parent 5d101fd2e2
commit cc063264e6
2 changed files with 2 additions and 2 deletions

View file

@ -299,7 +299,7 @@ const char *pa_proplist_gets(pa_proplist *p, const char *key) {
return (char*) prop->value;
}
int pa_proplist_get(pa_proplist *p, const char *key, const void **data, size_t *nbytes) {
int pa_proplist_get(const pa_proplist *p, const char *key, const void **data, size_t *nbytes) {
struct property *prop;
pa_assert(p);