From b2668ca063bc37377c324d507a3986879d0dc614 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Mon, 10 Apr 2006 20:43:24 +0000 Subject: 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 --- src/polyp/context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/polyp') 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)) || -- cgit