diff options
author | Christian Vogler <cvogler@users.sourceforge.net> | 2002-01-08 16:41:39 +0000 |
---|---|---|
committer | Christian Vogler <cvogler@users.sourceforge.net> | 2002-01-08 16:41:39 +0000 |
commit | 5672c3abb1afcbcacd2a1f618ab850f5838add2a (patch) | |
tree | 0ea7e7a996315367d5d7a35e75eaf04d1a40980a | |
parent | 297fb537f78af31a1a5185e73a6d91cdb3065b23 (diff) | |
download | xine-lib-5672c3abb1afcbcacd2a1f618ab850f5838add2a.tar.gz xine-lib-5672c3abb1afcbcacd2a1f618ab850f5838add2a.tar.bz2 |
fix type mismatch in initplug declaration for video_out and audio_out
CVS patchset: 1375
CVS date: 2002/01/08 16:41:39
-rw-r--r-- | src/xine-engine/load_plugins.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-engine/load_plugins.c b/src/xine-engine/load_plugins.c index 6e9e15916..a1831667b 100644 --- a/src/xine-engine/load_plugins.c +++ b/src/xine-engine/load_plugins.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: load_plugins.c,v 1.66 2002/01/07 11:33:16 jkeil Exp $ + * $Id: load_plugins.c,v 1.67 2002/01/08 16:41:39 cvogler Exp $ * * * Load input/demux/audio_out/video_out/codec plugins @@ -570,7 +570,7 @@ void load_decoder_plugins (xine_t *this, */ { - void *(*initplug) (int, config_values_t *); + void *(*initplug) (int, xine_t *); if((initplug = dlsym(plugin, "init_video_decoder_plugin")) != NULL) { video_decoder_t *vdp; |