Skip to content

Commit

Permalink
pcm_renderer_pa: fixed 'goto_end_on_pa_error' macro (closes #301)
Browse files Browse the repository at this point in the history
  • Loading branch information
juanrubio committed Oct 9, 2017
1 parent 6b27469 commit 5243c67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/pcm_renderer_pa/src/pulsearprc.c
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
do \
{ \
int pa_error = 0; \
if ((pa_error = (expr)) < 0) \
if ((pa_error = (expr)) != PA_OK) \
{ \
TIZ_ERROR (handleOf (ap_prc), \
"[OMX_ErrorInsufficientResources] : " \
Expand Down

0 comments on commit 5243c67

Please sign in to comment.