summaryrefslogtreecommitdiffstats
path: root/src/polyp
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2006-04-10 20:43:24 +0000
committerLennart Poettering <lennart@poettering.net>2006-04-10 20:43:24 +0000
commitb2668ca063bc37377c324d507a3986879d0dc614 (patch)
tree67a364d8a0bd555ec6e47c37add84742c3332cfb /src/polyp
parenta81209f147c5aa701efda0c911229a0fd6948fc9 (diff)
return the error code and not just -1 when pa_context_is_pending() fails
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@680 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src/polyp')
-rw-r--r--src/polyp/context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/polyp/context.c b/src/polyp/context.c
index 6fe008ea..c16b54b4 100644
--- a/src/polyp/context.c
+++ b/src/polyp/context.c
@@ -728,7 +728,7 @@ int pa_context_is_pending(pa_context *c) {
assert(c);
assert(c->ref >= 1);
- PA_CHECK_VALIDITY_RETURN_ANY(c, c->state == PA_CONTEXT_READY, PA_ERR_BADSTATE, -1);
+ PA_CHECK_VALIDITY(c, c->state == PA_CONTEXT_READY, PA_ERR_BADSTATE);
return (c->pstream && pa_pstream_is_pending(c->pstream)) ||
(c->pdispatch && pa_pdispatch_is_pending(c->pdispatch)) ||