summaryrefslogtreecommitdiff
path: root/src/command
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2018-09-02 07:49:27 +0200
committerMax Kellermann <max@musicpd.org>2018-09-02 08:17:22 +0200
commit993f8d6a5e4e2fc8a205e853e5f724143fbac788 (patch)
tree897a4a3e7bbdb9c7aa3bc4d26c16a4eaa75cbd44 /src/command
parent68f824a18640f7e582175a3e3a0b7d3fc60f207c (diff)
db/Print: pass RangeArg to db_selection_print()
Diffstat (limited to 'src/command')
-rw-r--r--src/command/DatabaseCommands.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command/DatabaseCommands.cxx b/src/command/DatabaseCommands.cxx
index 59aebf6d4..ade6a9362 100644
--- a/src/command/DatabaseCommands.cxx
+++ b/src/command/DatabaseCommands.cxx
@@ -113,7 +113,7 @@ handle_match(Client &client, Request args, Response &r, bool fold_case)
db_selection_print(r, client.GetPartition(),
selection, true, false,
sort, descending,
- window.start, window.end);
+ window);
return CommandResult::OK;
}