From 8cc372c4e415582da07b0f9c3de1909128b2c65e Mon Sep 17 00:00:00 2001 From: neofright Date: Fri, 17 Oct 2025 15:17:17 +0100 Subject: [PATCH] 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 --- tools/database/database.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/database/database.c b/tools/database/database.c index a7daf76259..42ab0650ee 100644 --- a/tools/database/database.c +++ b/tools/database/database.c @@ -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();