summaryrefslogtreecommitdiff
path: root/plugins/dca
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2010-10-15 19:49:27 +0200
committerGravatar waker <wakeroid@gmail.com>2010-10-15 19:49:27 +0200
commitf9c4dbe0238b902b3c0b62e754906aec93807244 (patch)
tree2cd7ce56d7a73de3e04322d7a593d7445ce55b05 /plugins/dca
parentd9c003337dfb5c216bd945b007d2be2a40b13f93 (diff)
removed some dca plugin error messages
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);