DatabasePrint: merge adjacent client_printf() calls

This commit is contained in:
Max Kellermann 2014-04-24 18:07:12 +02:00
parent 9616e9bf3b
commit 6378ad69bb

View File

@ -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