Skip to content

Commit

Permalink
get rid of compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
carltimmer committed Nov 19, 2024
1 parent d38e5e8 commit cb1ecd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/CompactBuilder_Test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ namespace evio {
size_t pos1 = buf1->position(), pos2 = buf2->position();
bool identical = true;

for (int i = 0; i < count; i++) {
for (size_t i = 0; i < count; i++) {
if (buf1->getByte(pos1 + i) != buf2->getByte(pos2 + i)) {
std::cout << "compareByteBuffers: buffer data differs at relative pos, " << i << std::endl;
identical = false;
Expand Down

0 comments on commit cb1ecd9

Please sign in to comment.