summaryrefslogtreecommitdiff
path: root/plugins/ao/plugin.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/ao/plugin.c')
-rw-r--r--plugins/ao/plugin.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/ao/plugin.c b/plugins/ao/plugin.c
index 46faec6b..d997c759 100644
--- a/plugins/ao/plugin.c
+++ b/plugins/ao/plugin.c
@@ -186,21 +186,21 @@ aoplug_seek (DB_fileinfo_t *_info, float time) {
static void
aoplug_add_meta (DB_playItem_t *it, const char *key, const char *value, const char *comment_title) {
- const char *res = NULL;
+// const char *res = NULL;
char tmp[200];
// check utf8
if (deadbeef->junk_recode (value, strlen (value), tmp, sizeof (tmp), "utf-8") >= 0) {
if (key) {
deadbeef->pl_add_meta (it, key, value);
}
- res = value;
+// res = value;
}
// check shift-jis
if (deadbeef->junk_recode (value, strlen (value), tmp, sizeof (tmp), "SHIFT-JIS") >= 0) {
if (key) {
deadbeef->pl_add_meta (it, key, tmp);
}
- res = tmp;
+// res = tmp;
}
// if (res) {