summaryrefslogtreecommitdiff
path: root/plugins.c
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-07-29 08:17:36 +0200
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-07-29 08:17:36 +0200
commita47247a948e47f6bbadcf15f031af902d1f42551 (patch)
treee4b053672c0eb89b4c22c8fe95c97ef8377664cf /plugins.c
parent87e3b467e0bd62e43d6eb3547574c2378264ef89 (diff)
fixed pl_format_title code duplication in shellexec plugin
Diffstat (limited to 'plugins.c')
-rw-r--r--plugins.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins.c b/plugins.c
index 07c38a7e..368768b9 100644
--- a/plugins.c
+++ b/plugins.c
@@ -160,6 +160,7 @@ static DB_functions_t deadbeef_api = {
.pl_get_next = (DB_playItem_t *(*) (DB_playItem_t *, int))pl_get_next,
.pl_get_prev = (DB_playItem_t *(*) (DB_playItem_t *, int))pl_get_prev,
.pl_format_title = (int (*) (DB_playItem_t *it, int idx, char *s, int size, int id, const char *fmt))pl_format_title,
+ .pl_format_title_escaped = (int (*) (DB_playItem_t *it, int idx, char *s, int size, int id, const char *fmt))pl_format_title_escaped,
.pl_format_time = pl_format_time,
.pl_move_items = (void (*) (int iter, int plt_from, DB_playItem_t *drop_before, uint32_t *indexes, int count))pl_move_items,
.pl_copy_items = (void (*) (int iter, int plt_from, DB_playItem_t *before, uint32_t *indices, int cnt))pl_copy_items,