librz: build warning fix (#1821)
This commit is contained in:
parent
69b509a157
commit
f4311e3fcb
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue