Skip to content

Commit 7ec09be

Browse files
committed
fix error
1 parent 76ba519 commit 7ec09be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lucene/backward-codecs/src/java/org/apache/lucene/backward_codecs/lucene101/Lucene101PostingsReader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ public void init(IndexInput termsIn, SegmentReadState state) throws IOException
185185
}
186186
}
187187

188-
static void prefixSum(int[] buffer, int count, long base) {
188+
static void prefixSum(int[] buffer, int count, int base) {
189189
int sum = base;
190190
for (int i = 0; i < count; ++i) {
191191
sum += buffer[i];

0 commit comments

Comments
 (0)