summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xine/post.c8
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);
}
}