aboutsummaryrefslogtreecommitdiffstats
path: root/src/command/DatabaseCommands.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/command/DatabaseCommands.cxx')
-rw-r--r--src/command/DatabaseCommands.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/command/DatabaseCommands.cxx b/src/command/DatabaseCommands.cxx
index e1f129d0a..6e9d3caa5 100644
--- a/src/command/DatabaseCommands.cxx
+++ b/src/command/DatabaseCommands.cxx
@@ -159,7 +159,7 @@ handle_count(Client &client, int argc, char *argv[])
}
Error error;
- return searchStatsForSongsIn(client, "", &filter, error)
+ return PrintSongCount(client, "", &filter, error)
? CommandResult::OK
: print_error(client, error);
}
@@ -243,7 +243,7 @@ handle_list(Client &client, int argc, char *argv[])
Error error;
CommandResult ret =
- listAllUniqueTags(client, tagType, group_mask, filter, error)
+ PrintUniqueTags(client, tagType, group_mask, filter, error)
? CommandResult::OK
: print_error(client, error);