DatabasePrint: refactor variable/function names

This commit is contained in:
Max Kellermann
2014-04-25 18:36:07 +02:00
parent 6d616e55ae
commit 4cca75b2e1
3 changed files with 23 additions and 23 deletions

View File

@@ -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);