summaryrefslogtreecommitdiff
path: root/lib/rbcodec/metadata/metadata.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rbcodec/metadata/metadata.c')
-rw-r--r--lib/rbcodec/metadata/metadata.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rbcodec/metadata/metadata.c b/lib/rbcodec/metadata/metadata.c
index 87ea922788..7ca4b1afd2 100644
--- a/lib/rbcodec/metadata/metadata.c
+++ b/lib/rbcodec/metadata/metadata.c
@@ -444,13 +444,13 @@ bool get_metadata(struct mp3entry* id3, int fd, const char* trackname)
444 /* Load codec specific track tag information and confirm the codec type. */ 444 /* Load codec specific track tag information and confirm the codec type. */
445 if (!entry->parse_func) 445 if (!entry->parse_func)
446 { 446 {
447 DEBUGF("nothing to parse for %s (format %s)", trackname, entry->label); 447 DEBUGF("nothing to parse for %s (format %s)\n", trackname, entry->label);
448 return false; 448 return false;
449 } 449 }
450 450
451 if (!entry->parse_func(fd, id3)) 451 if (!entry->parse_func(fd, id3))
452 { 452 {
453 DEBUGF("parsing %s failed (format: %s)", trackname, entry->label); 453 DEBUGF("parsing %s failed (format: %s)\n", trackname, entry->label);
454 return false; 454 return false;
455 } 455 }
456 456