DatabasePrint: merge adjacent client_printf() calls
This commit is contained in:
parent
9616e9bf3b
commit
6378ad69bb
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user