diff options
Diffstat (limited to 'src/xine-utils/list.c')
-rw-r--r-- | src/xine-utils/list.c | 4 |
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; |