Commit 60620d9a authored by Max Kellermann's avatar Max Kellermann

db/Print: move variable `i`

parent 15b2a486
......@@ -185,8 +185,6 @@ db_selection_print(Response &r, Partition &partition,
{
const Database &db = partition.GetDatabaseOrThrow();
unsigned i = 0;
using namespace std::placeholders;
const auto d = selection.filter == nullptr
? std::bind(full ? PrintDirectoryFull : PrintDirectoryBrief,
......@@ -200,6 +198,7 @@ db_selection_print(Response &r, Partition &partition,
: VisitPlaylist();
if (sort == TAG_NUM_OF_ITEM_TYPES) {
unsigned i = 0;
if (!window.IsAll())
s = [s, window, &i](const LightSong &song){
if (window.Contains(i++))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment