From 6378ad69bb053b89495c1ad957fe4774d0c19bb9 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Thu, 24 Apr 2014 18:07:12 +0200 Subject: DatabasePrint: merge adjacent client_printf() calls --- src/db/DatabasePrint.cxx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/db/DatabasePrint.cxx b/src/db/DatabasePrint.cxx index cd2c32ed5..0e91db5d5 100644 --- a/src/db/DatabasePrint.cxx +++ b/src/db/DatabasePrint.cxx @@ -176,8 +176,10 @@ struct SearchStats { static void printSearchStats(Client &client, const SearchStats &stats) { - client_printf(client, "songs: %u\n", stats.numberOfSongs); - client_printf(client, "playtime: %lu\n", stats.playTime); + client_printf(client, + "songs: %u\n" + "playtime: %lu\n", + stats.numberOfSongs, stats.playTime); } static bool -- cgit v1.2.3