diff options
Diffstat (limited to 'src/playlist_print.c')
-rw-r--r-- | src/playlist_print.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/playlist_print.c b/src/playlist_print.c index 40b50545b..9962ffc35 100644 --- a/src/playlist_print.c +++ b/src/playlist_print.c @@ -117,11 +117,12 @@ playlist_print_changes_position(struct client *client, } bool -spl_print(struct client *client, const char *name_utf8, bool detail) +spl_print(struct client *client, const char *name_utf8, bool detail, + GError **error_r) { GPtrArray *list; - list = spl_load(name_utf8); + list = spl_load(name_utf8, error_r); if (list == NULL) return false; |