diff options
author | Max Kellermann <max@musicpd.org> | 2018-09-02 07:49:27 +0200 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2018-09-02 08:17:22 +0200 |
commit | 993f8d6a5e4e2fc8a205e853e5f724143fbac788 (patch) | |
tree | 897a4a3e7bbdb9c7aa3bc4d26c16a4eaa75cbd44 /src/command | |
parent | 68f824a18640f7e582175a3e3a0b7d3fc60f207c (diff) |
db/Print: pass RangeArg to db_selection_print()
Diffstat (limited to 'src/command')
-rw-r--r-- | src/command/DatabaseCommands.cxx | 2 |
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; } |