diff options
Diffstat (limited to 'src/song.c')
-rw-r--r-- | src/song.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/song.c b/src/song.c index a54c71735..91714f01c 100644 --- a/src/song.c +++ b/src/song.c @@ -189,7 +189,7 @@ void insertSongIntoList(SongList * list, ListNode ** nextSongNode, char * key, *nextSongNode = (*nextSongNode)->nextNode; } else { - insertInListBeforeNode(list, *nextSongNode, song->url, + insertInListBeforeNode(list, *nextSongNode, -1, song->url, (void *)song); } } |