mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-05 13:29:57 -05:00
proplist: pa_proplist_iterate: constify proplist pointer
This commit is contained in:
parent
e82506f08d
commit
5d101fd2e2
2 changed files with 2 additions and 2 deletions
|
|
@ -370,7 +370,7 @@ int pa_proplist_unset_many(pa_proplist *p, const char * const keys[]) {
|
|||
return n;
|
||||
}
|
||||
|
||||
const char *pa_proplist_iterate(pa_proplist *p, void **state) {
|
||||
const char *pa_proplist_iterate(const pa_proplist *p, void **state) {
|
||||
struct property *prop;
|
||||
|
||||
if (!(prop = pa_hashmap_iterate(MAKE_HASHMAP_CONST(p), state, NULL)))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue