From d7e7d6a95d3de22696dad5b1cb35f28e63d6ee7e Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Duraffort?= Date: Sun, 24 Aug 2008 14:22:30 +0200 Subject: [PATCH] Fix #1899 as far as I can test it (in all cse this change is good). --- src/playlist/item.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/playlist/item.c b/src/playlist/item.c index eba3006f69..d72e41560e 100644 --- a/src/playlist/item.c +++ b/src/playlist/item.c @@ -763,7 +763,7 @@ int playlist_TreeMove( playlist_t * p_playlist, playlist_item_t *p_item, p_playlist->p_root_category, false ); if( p_node_category && p_item_category ) - TreeMove( p_playlist, p_item_category, p_node_category, i_newpos ); + TreeMove( p_playlist, p_item_category, p_node_category, 0 ); } i_ret = VLC_SUCCESS; } -- 2.39.5