librz: build warning fix (#1821)

This commit is contained in:
David CARLIER 2021-10-11 21:30:24 +01:00 committed by GitHub
parent 69b509a157
commit f4311e3fcb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -548,7 +548,7 @@ RZ_API RzILBitVector *rz_il_bv_complement_2(RZ_NONNULL RzILBitVector *bv) {
// assert bv[i] == true now
i += 1;
for (i = i; i < bv->len; ++i) {
for (; i < bv->len; ++i) {
rz_il_bv_toggle(ret, i);
}