diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2007-12-15 04:22:04 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2007-12-15 04:22:04 +0000 |
commit | 8cba2f6983736209def1c838dd53aa5e8c19ec4a (patch) | |
tree | 89305c138f23f89a4fd69b37948926aa4d9d7a78 | |
parent | 35de2d5310582d38d59df87432ae3c37ad84edbd (diff) | |
download | xine-lib-8cba2f6983736209def1c838dd53aa5e8c19ec4a.tar.gz xine-lib-8cba2f6983736209def1c838dd53aa5e8c19ec4a.tar.bz2 |
Remove a stray semicolon.
-rw-r--r-- | src/xine-engine/load_plugins.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xine-engine/load_plugins.c b/src/xine-engine/load_plugins.c index 2d2f3f3e4..a03ea6d17 100644 --- a/src/xine-engine/load_plugins.c +++ b/src/xine-engine/load_plugins.c @@ -2533,7 +2533,7 @@ char *xine_get_mime_types (xine_t *self) { cls = (demux_class_t *)node->plugin_class; - if ( cls->mimetypes ); + if ( cls->mimetypes ) len += strlen(cls->mimetypes); } } |