summaryrefslogtreecommitdiff
path: root/plugins/dca
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/dca')
-rw-r--r--plugins/dca/dcaplug.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/dca/dcaplug.c b/plugins/dca/dcaplug.c
index 1430b49a..9d0181f5 100644
--- a/plugins/dca/dcaplug.c
+++ b/plugins/dca/dcaplug.c
@@ -356,7 +356,7 @@ dts_init (DB_fileinfo_t *_info, DB_playItem_t *it) {
info->file = deadbeef->fopen (it->fname);
if (!info->file) {
- fprintf (stderr, "dca: failed to open %s\n", it->fname);
+ trace ("dca: failed to open %s\n", it->fname);
return -1;
}
@@ -546,7 +546,7 @@ static DB_playItem_t *
dts_insert (DB_playItem_t *after, const char *fname) {
DB_FILE *fp = deadbeef->fopen (fname);
if (!fp) {
- fprintf (stderr, "dca: failed to open %s\n", fname);
+ trace ("dca: failed to open %s\n", fname);
return NULL;
}
int64_t fsize = deadbeef->fgetlength (fp);