From 9616e9bf3b8b6d8e28e0e5272953c4a4bcf4890c Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Thu, 24 Apr 2014 18:06:46 +0200 Subject: DatabasePrint: pass const SearchStats reference --- src/db/DatabasePrint.cxx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/db/DatabasePrint.cxx b/src/db/DatabasePrint.cxx index 539b9773f..cd2c32ed5 100644 --- a/src/db/DatabasePrint.cxx +++ b/src/db/DatabasePrint.cxx @@ -173,10 +173,11 @@ struct SearchStats { unsigned long playTime; }; -static void printSearchStats(Client &client, SearchStats *stats) +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", stats.numberOfSongs); + client_printf(client, "playtime: %lu\n", stats.playTime); } static bool @@ -209,7 +210,7 @@ searchStatsForSongsIn(Client &client, const char *name, if (!db->Visit(selection, f, error)) return false; - printSearchStats(client, &stats); + printSearchStats(client, stats); return true; } -- cgit v1.2.3