diff options
Diffstat (limited to '')
-rw-r--r-- | src/playlist_save.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/playlist_save.c b/src/playlist_save.c index 41538b620..f1634eb56 100644 --- a/src/playlist_save.c +++ b/src/playlist_save.c @@ -98,7 +98,7 @@ spl_save_queue(const char *name_utf8, const struct queue *queue) } enum playlist_result -playlist_load_spl(const char *name_utf8) +playlist_load_spl(struct playlist *playlist, const char *name_utf8) { GPtrArray *list; @@ -108,7 +108,7 @@ playlist_load_spl(const char *name_utf8) for (unsigned i = 0; i < list->len; ++i) { const char *temp = g_ptr_array_index(list, i); - if ((addToPlaylist(temp, NULL)) != PLAYLIST_RESULT_SUCCESS) { + if ((addToPlaylist(playlist, temp, NULL)) != PLAYLIST_RESULT_SUCCESS) { /* for windows compatibility, convert slashes */ char *temp2 = g_strdup(temp); char *p = temp2; @@ -117,7 +117,7 @@ playlist_load_spl(const char *name_utf8) *p = '/'; p++; } - if ((addToPlaylist(temp, NULL)) != PLAYLIST_RESULT_SUCCESS) { + if ((addToPlaylist(playlist, temp, NULL)) != PLAYLIST_RESULT_SUCCESS) { g_warning("can't add file \"%s\"", temp2); } g_free(temp2); |