summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Salt <linux@youmustbejoking.demon.co.uk>2006-02-14 18:47:46 +0000
committerDarren Salt <linux@youmustbejoking.demon.co.uk>2006-02-14 18:47:46 +0000
commit80c44f96511216eefdb2c819f1857cb565ea508f (patch)
treea41cc00ec98da2850bf1c129e955d6aea2fd79ee
parentd4abb3b386520e8e0431ea4ae427e7b4898049f1 (diff)
downloadxine-lib-80c44f96511216eefdb2c819f1857cb565ea508f.tar.gz
xine-lib-80c44f96511216eefdb2c819f1857cb565ea508f.tar.bz2
Fix a compiler warning.
CVS patchset: 7897 CVS date: 2006/02/14 18:47:46
-rw-r--r--src/xine-engine/load_plugins.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-engine/load_plugins.c b/src/xine-engine/load_plugins.c
index 586ddf9b5..0bca4bd4e 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.219 2006/02/01 15:11:42 hadess Exp $
+ * $Id: load_plugins.c,v 1.220 2006/02/14 18:47:46 dsalt Exp $
*
*
* Load input/demux/audio_out/video_out/codec plugins
@@ -521,7 +521,7 @@ static void _register_plugins_internal(xine_t *this, plugin_file_t *file, plugin
}
void xine_register_plugins(xine_t *self, plugin_info_t *info) {
- return _register_plugins_internal(self, NULL, info);
+ _register_plugins_internal(self, NULL, info);
}
/*