summaryrefslogtreecommitdiff
path: root/src/xine-utils
diff options
context:
space:
mode:
authorMichael Roitzsch <mroi@users.sourceforge.net>2004-12-20 21:38:24 +0000
committerMichael Roitzsch <mroi@users.sourceforge.net>2004-12-20 21:38:24 +0000
commitd18f0ffcf6cac260e15cc927e188225b304a00ae (patch)
tree8712e1af6c92a61ac99ef359664e0a7cf64bde3f /src/xine-utils
parentb32478f237d5e590e4714ee52ab5ce96206bae05 (diff)
downloadxine-lib-d18f0ffcf6cac260e15cc927e188225b304a00ae.tar.gz
xine-lib-d18f0ffcf6cac260e15cc927e188225b304a00ae.tar.bz2
reverse the order plugins with equal priorities are handled so that plugins
appearing earlier in the plugin path actually override later plugins; also check the priority of video_out plugins on loading for symmetry to the audio_out loading CVS patchset: 7289 CVS date: 2004/12/20 21:38:24
Diffstat (limited to 'src/xine-utils')
-rw-r--r--src/xine-utils/list.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-utils/list.c b/src/xine-utils/list.c
index 15f646d96..bd44a6abf 100644
--- a/src/xine-utils/list.c
+++ b/src/xine-utils/list.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: list.c,v 1.8 2004/04/16 16:34:23 hadess Exp $
+ * $Id: list.c,v 1.9 2004/12/20 21:38:24 mroi Exp $
*
*/
#ifdef HAVE_CONFIG_H
@@ -151,7 +151,7 @@ void xine_list_append_priority_content (xine_list_t *l, void *content, int prior
cur = l->first;
while(1) {
- if( priority >= cur->priority ) {
+ if( priority > cur->priority ) {
node->next = cur;
node->prev = cur->prev;