diff options
author | Peter Meerwald <p.meerwald@bct-electronic.com> | 2011-12-12 13:19:50 +0100 |
---|---|---|
committer | Colin Guthrie <colin@mageia.org> | 2011-12-12 23:57:54 +0000 |
commit | d6512750fd296e81444c7f5c922a5db5a8ff1df8 (patch) | |
tree | 2ae4b1784680b834f2e6551841f601a8d0b611ae | |
parent | 9e22ff0f033233a76562fd93294027c8c859236f (diff) |
proplist: Consistently use parameter name p for a pa_proplist* in prototype
-rw-r--r-- | src/pulse/proplist.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pulse/proplist.h b/src/pulse/proplist.h index 099599f7f..97694dfe9 100644 --- a/src/pulse/proplist.h +++ b/src/pulse/proplist.h @@ -391,13 +391,13 @@ void pa_proplist_clear(pa_proplist *p); /** Allocate a new property list and copy over every single entry from * the specific list. \since 0.9.11 */ -pa_proplist* pa_proplist_copy(pa_proplist *t); +pa_proplist* pa_proplist_copy(pa_proplist *p); /** Return the number of entries in the property list. \since 0.9.15 */ -unsigned pa_proplist_size(pa_proplist *t); +unsigned pa_proplist_size(pa_proplist *p); /** Returns 0 when the proplist is empty, positive otherwise \since 0.9.15 */ -int pa_proplist_isempty(pa_proplist *t); +int pa_proplist_isempty(pa_proplist *p); /** Return non-zero when a and b have the same keys and values. * \since 0.9.16 */ |