Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/jrd/sqz.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ ULONG Difference::makeNoDiff(ULONG length)
if (output >= end)
return 0;

const auto max = MIN(length, 127);
const int max = MIN(length, 127);
*output++ = -max;
length -= max;
}
Expand Down Expand Up @@ -644,7 +644,7 @@ ULONG Difference::make(ULONG length1, const UCHAR* rec1,
if (output >= end)
return 0;

const auto max = MIN(count, 127);
const int max = MIN(count, 127);
*output++ = -max;
count -= max;
}
Expand Down
Loading