aboutsummaryrefslogtreecommitdiffstats
path: root/src/command/DatabaseCommands.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-04-25 18:36:07 +0200
committerMax Kellermann <max@duempel.org>2014-04-25 18:36:07 +0200
commit4cca75b2e17f3145dfe156285f30b86210662b79 (patch)
treec2950e19698bfcbfa3d127a5b504be9720328c5d /src/command/DatabaseCommands.cxx
parent6d616e55ae21681f1d6c965a26d58bd11efee9b8 (diff)
downloadmpd-4cca75b2e17f3145dfe156285f30b86210662b79.tar.gz
mpd-4cca75b2e17f3145dfe156285f30b86210662b79.tar.xz
mpd-4cca75b2e17f3145dfe156285f30b86210662b79.zip
DatabasePrint: refactor variable/function names
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);