Commit 6378ad69 authored by Max Kellermann's avatar Max Kellermann

DatabasePrint: merge adjacent client_printf() calls

parent 9616e9bf
...@@ -176,8 +176,10 @@ struct SearchStats { ...@@ -176,8 +176,10 @@ struct SearchStats {
static void static void
printSearchStats(Client &client, const SearchStats &stats) printSearchStats(Client &client, const SearchStats &stats)
{ {
client_printf(client, "songs: %u\n", stats.numberOfSongs); client_printf(client,
client_printf(client, "playtime: %lu\n", stats.playTime); "songs: %u\n"
"playtime: %lu\n",
stats.numberOfSongs, stats.playTime);
} }
static bool static bool
......
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