summaryrefslogtreecommitdiff
path: root/plugins/shn
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2011-05-08 21:14:30 +0200
committerGravatar waker <wakeroid@gmail.com>2011-05-08 21:14:30 +0200
commit3ec7a3d62a7383f19d4d4ee68ea9f0c66c9fe970 (patch)
treee7f95127ad480f446c10c81ffe220e581622e8e2 /plugins/shn
parentb5ffaa4ae71ce0520d55b99e0501b92c031e860e (diff)
changed few old-style pl_* functions which were working with current playlist with the new ones, working with specific playlist passed as argument
Diffstat (limited to 'plugins/shn')
-rw-r--r--plugins/shn/shn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/shn/shn.c b/plugins/shn/shn.c
index c8e0a773..c7f20149 100644
--- a/plugins/shn/shn.c
+++ b/plugins/shn/shn.c
@@ -896,7 +896,7 @@ shn_insert (ddb_playlist_t *plt, DB_playItem_t *after, const char *fname) {
DB_playItem_t *it = deadbeef->pl_item_alloc_init (fname, plugin.plugin.id);
deadbeef->pl_add_meta (it, ":FILETYPE", "Shorten");
- deadbeef->pl_set_item_duration (it, tmp_file->wave_header.length);
+ deadbeef->plt_set_item_duration (plt, it, tmp_file->wave_header.length);
int apeerr = deadbeef->junk_apev2_read (it, tmp_file->vars.fd);
int v2err = deadbeef->junk_id3v2_read (it, tmp_file->vars.fd);