Commit 9994521b authored by Max Kellermann's avatar Max Kellermann

test/dump_playlist: add missing newline to error message

parent adbe8c40
...@@ -161,7 +161,7 @@ int main(int argc, char **argv) ...@@ -161,7 +161,7 @@ int main(int argc, char **argv)
config_global_init(); config_global_init();
success = config_read_file(argv[1], &error); success = config_read_file(argv[1], &error);
if (!success) { if (!success) {
g_printerr("%s:", error->message); g_printerr("%s\n", error->message);
g_error_free(error); g_error_free(error);
return 1; return 1;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment