lib/PublicInbox/SearchIdx.pm | 4 ++-- diff --git a/lib/PublicInbox/SearchIdx.pm b/lib/PublicInbox/SearchIdx.pm index 926fac803264288cf3a298b68c08cba62a59dfec..b56fd0ee5f45569b14d52476ea256e031a5ec11f 100644 --- a/lib/PublicInbox/SearchIdx.pm +++ b/lib/PublicInbox/SearchIdx.pm @@ -384,7 +384,7 @@ while (1) { my ($head, $tail) = $self->find_doc_ids($termval); return if $head == $tail; my @ids; - for (; $head != $tail && @ids < $batch_size; $head->inc) { + for (; $head != $tail && @ids < $batch_size; $head++) { push @ids, $head->get_docid; } $cb->(\@ids); @@ -439,7 +439,7 @@ # there is only ONE element in @delete unless we # have bugs in our v2writable deduplication check my @delete; - for (; $head != $tail; $head->inc) { + for (; $head != $tail; $head++) { my $docid = $head->get_docid; my $doc = $db->get_document($docid); my $smsg = PublicInbox::SearchMsg->wrap($mid);