Commit 9616e9bf authored by Max Kellermann's avatar Max Kellermann

DatabasePrint: pass const SearchStats reference

parent 7c8b73bf
...@@ -173,10 +173,11 @@ struct SearchStats { ...@@ -173,10 +173,11 @@ struct SearchStats {
unsigned long playTime; 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, "songs: %u\n", stats.numberOfSongs);
client_printf(client, "playtime: %lu\n", stats->playTime); client_printf(client, "playtime: %lu\n", stats.playTime);
} }
static bool static bool
...@@ -209,7 +210,7 @@ searchStatsForSongsIn(Client &client, const char *name, ...@@ -209,7 +210,7 @@ searchStatsForSongsIn(Client &client, const char *name,
if (!db->Visit(selection, f, error)) if (!db->Visit(selection, f, error))
return false; return false;
printSearchStats(client, &stats); printSearchStats(client, stats);
return true; return true;
} }
......
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