diff options
Diffstat (limited to 'src/pulsecore/props.c')
-rw-r--r-- | src/pulsecore/props.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/pulsecore/props.c b/src/pulsecore/props.c index fc3dce9e..23d432ec 100644 --- a/src/pulsecore/props.c +++ b/src/pulsecore/props.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /*** This file is part of PulseAudio. @@ -39,7 +37,7 @@ typedef struct pa_property { /* Allocate a new property object */ static pa_property* property_new(const char *name, void *data) { pa_property* p; - + pa_assert(name); pa_assert(data); @@ -60,7 +58,7 @@ static void property_free(pa_property *p) { void* pa_property_get(pa_core *c, const char *name) { pa_property *p; - + pa_assert(c); pa_assert(name); pa_assert(c->properties); @@ -73,7 +71,7 @@ void* pa_property_get(pa_core *c, const char *name) { int pa_property_set(pa_core *c, const char *name, void *data) { pa_property *p; - + pa_assert(c); pa_assert(name); pa_assert(data); @@ -89,7 +87,7 @@ int pa_property_set(pa_core *c, const char *name, void *data) { int pa_property_remove(pa_core *c, const char *name) { pa_property *p; - + pa_assert(c); pa_assert(name); pa_assert(c->properties); @@ -123,7 +121,7 @@ void pa_property_cleanup(pa_core *c) { void pa_property_dump(pa_core *c, pa_strbuf *s) { void *state = NULL; pa_property *p; - + pa_assert(c); pa_assert(s); |