Skip to content

Commit

Permalink
Fix indexing mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmudd committed Nov 19, 2024
1 parent 1f3747b commit 30586df
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ private FixedArrayDataBlock(FixedArrayIndex fixedArrayIndex, HdfBackingStorage h
}
} else if (clientId == 1) { // Filtered
for (int i = 0; i < pageSize; i++) {
readFiltered(fixedArrayIndex, hdfBackingStorage, bb, i);
readFiltered(fixedArrayIndex, hdfBackingStorage, bb, chunkIndex++);
}
} else {
throw new HdfException("Unrecognized client ID = " + clientId);
Expand Down

0 comments on commit 30586df

Please sign in to comment.