mirror of
https://github.com/Rockbox/rockbox.git
synced 2026-01-22 01:30:35 -05:00
Add line break to fprintf in database.c
Before: Scanning files (may take some time)...Read metadata for /Music/foo/bar/baz.ogg After: Scanning files (may take some time)... Read metadata for /Music/foo/bar/baz.ogg Change-Id: Id3816104779fd80930cd213bab29765bdd3db451
This commit is contained in:
parent
c594b58af2
commit
8cc372c4e4
1 changed files with 1 additions and 1 deletions
|
|
@ -34,7 +34,7 @@ int main(int argc, char **argv)
|
|||
const char *paths[] = { "/", NULL };
|
||||
tagcache_init();
|
||||
|
||||
fprintf(stderr, "Scanning files (may take some time)...");
|
||||
fprintf(stderr, "Scanning files (may take some time)...\n");
|
||||
|
||||
do_tagcache_build(paths);
|
||||
tagcache_reverse_scan();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue