summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRobin KAY <komadori@users.sourceforge.net>2003-01-01 16:19:14 +0000
committerRobin KAY <komadori@users.sourceforge.net>2003-01-01 16:19:14 +0000
commit98694101d0df67c7b51392012becef95ad520dd6 (patch)
tree919a9b79ed195fe3dc1f141bb8df42ac5b94fa82 /src
parent3b049270e80f9db5949ecf9932a33dd5d3cac3ba (diff)
downloadxine-lib-98694101d0df67c7b51392012becef95ad520dd6.tar.gz
xine-lib-98694101d0df67c7b51392012becef95ad520dd6.tar.bz2
void functions can't return a value
CVS patchset: 3741 CVS date: 2003/01/01 16:19:14
Diffstat (limited to 'src')
-rw-r--r--src/xine-engine/post.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/xine-engine/post.c b/src/xine-engine/post.c
index 475a9b12f..66a9bbff2 100644
--- a/src/xine-engine/post.c
+++ b/src/xine-engine/post.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: post.c,v 1.6 2002/12/27 03:40:07 miguelfreitas Exp $
+ * $Id: post.c,v 1.7 2003/01/01 16:19:14 komadori Exp $
*/
/*
@@ -203,17 +203,14 @@ static audio_buffer_t * post_audio_get_buffer(xine_audio_port_t *port_gen) {
static void post_audio_put_buffer(xine_audio_port_t *port_gen, audio_buffer_t *buf,
xine_stream_t *stream) {
post_audio_port_t *port = (post_audio_port_t *)port_gen;
- return port->original_port->put_buffer(port->original_port, buf, stream);
}
static void post_audio_close(xine_audio_port_t *port_gen, xine_stream_t *stream) {
post_audio_port_t *port = (post_audio_port_t *)port_gen;
- return port->original_port->close(port->original_port, stream);
}
static void post_audio_exit(xine_audio_port_t *port_gen) {
post_audio_port_t *port = (post_audio_port_t *)port_gen;
- return port->original_port->exit(port->original_port);
}
static int post_audio_control (xine_audio_port_t *port_gen, int cmd, ...) {
@@ -232,7 +229,6 @@ static int post_audio_control (xine_audio_port_t *port_gen, int cmd, ...) {
static void post_audio_flush(xine_audio_port_t *port_gen) {
post_audio_port_t *port = (post_audio_port_t *)port_gen;
- return port->original_port->flush(port->original_port);
}
static int post_audio_status(xine_audio_port_t *port_gen, xine_stream_t *stream,