Skip to content

Commit 542857b

Browse files
msotheeswaran-scJohnSully
authored andcommitted
fix debian 12 test failure
1 parent c82e959 commit 542857b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/bitops.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ int checkUnsignedBitfieldOverflow(uint64_t value, int64_t incr, uint64_t bits, i
322322
return 1;
323323
}
324324

325-
int checkSignedBitfieldOverflow(int64_t value, int64_t incr, uint64_t bits, int owtype, int64_t *limit) {
325+
int checkSignedBitfieldOverflow(int64_t value, int64_t incr, int bits, int owtype, int64_t *limit) {
326326
int64_t max = (bits == 64) ? INT64_MAX : (((int64_t)1<<(bits-1))-1);
327327
int64_t min = (-max)-1;
328328

0 commit comments

Comments
 (0)