diff options
| author | phintuka <phintuka> | 2012-01-16 11:43:13 +0000 |
|---|---|---|
| committer | phintuka <phintuka> | 2012-01-16 11:43:13 +0000 |
| commit | 2ee95d6dd67ab9b15f654155df2b13028cbb5038 (patch) | |
| tree | 92579d45460a40e92dc335c403baf72575a66873 /xine | |
| parent | 9ad5a5d01bf7e1c2e61cf92784b9705b1334d229 (diff) | |
| download | xineliboutput-2ee95d6dd67ab9b15f654155df2b13028cbb5038.tar.gz xineliboutput-2ee95d6dd67ab9b15f654155df2b13028cbb5038.tar.bz2 | |
Removed write-only variables
Diffstat (limited to 'xine')
| -rw-r--r-- | xine/post.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/xine/post.c b/xine/post.c index 508e7fd9..fd6fb269 100644 --- a/xine/post.c +++ b/xine/post.c @@ -419,7 +419,6 @@ static void _vpplugin_rewire_from_post_elements(fe_t *fe, post_element_t **post_ } else { const xine_post_in_t *vo_in; - int err; /* look for standard input names */ vo_in = xine_post_input(post_elements[i + 1]->post, "video"); @@ -428,8 +427,8 @@ static void _vpplugin_rewire_from_post_elements(fe_t *fe, post_element_t **post_ LOGDBG(" wiring %10s[out] -> [in]%-10s ", post_elements[i]->name, post_elements[i+1]->name); - err = xine_post_wire((xine_post_out_t *) vo_out, - (xine_post_in_t *) vo_in); + xine_post_wire((xine_post_out_t *) vo_out, + (xine_post_in_t *) vo_in); } } @@ -466,7 +465,6 @@ static void _applugin_rewire_from_post_elements(fe_t *fe, post_element_t **post_ } else { const xine_post_in_t *ao_in; - int err; /* look for standard input names */ ao_in = xine_post_input(post_elements[i + 1]->post, "audio"); @@ -475,7 +473,7 @@ static void _applugin_rewire_from_post_elements(fe_t *fe, post_element_t **post_ LOGDBG(" wiring %10s[out] -> [in]%-10s ", post_elements[i]->name, post_elements[i+1]->name); - err = xine_post_wire((xine_post_out_t *) ao_out, (xine_post_in_t *) ao_in); + xine_post_wire((xine_post_out_t *) ao_out, (xine_post_in_t *) ao_in); } } |
