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; 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; struct property *prop;
pa_assert(p); pa_assert(p);

View file

@ -318,7 +318,7 @@ const char *pa_proplist_gets(pa_proplist *p, const char *key);
* point to an internally allocated buffer. The caller should make a * point to an internally allocated buffer. The caller should make a
* copy of the data before the property list is accessed again. * copy of the data before the property list is accessed again.
* Returns zero on success, negative on error. \since 0.9.11 */ * Returns zero on success, negative on error. \since 0.9.11 */
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);
/** Update mode enum for pa_proplist_update(). \since 0.9.11 */ /** Update mode enum for pa_proplist_update(). \since 0.9.11 */
typedef enum pa_update_mode { typedef enum pa_update_mode {