library: Separate error messages with line breaks

This condition is only hit when trying to tag files that aren't
recognized as audio files.

Signed-off-by: Anna Schumaker <schumaker.anna@gmail.com>
This commit is contained in:
Anna Schumaker 2014-01-29 21:39:12 -05:00 committed by Anna Schumaker
parent c9f1c07fa3
commit 7a78e649a0
1 changed files with 1 additions and 1 deletions

View File

@ -286,7 +286,7 @@ static void read_tags(unsigned int lib_id, const std :: string &path)
unsigned int artist_id, album_id, genre_id, track_id;
if (ref.isNull()) {
print("ERROR: Could not read tags for file %s", path.c_str());
print("ERROR: Could not read tags for file %s\n", path.c_str());
return;
}