fix(PVS/V1019): compound assignment expression is used inside condition

This commit is contained in:
Dundar Göc
2022-03-21 18:38:19 +01:00
parent 0c02e8a62b
commit 93e0d9b556

View File

@@ -3893,7 +3893,7 @@ void ex_display(exarg_T *eap)
msg_puts_attr("^J", attr);
n -= 2;
}
for (p = yb->y_array[j]; *p && (n -= ptr2cells(p)) >= 0; p++) {
for (p = yb->y_array[j]; *p && (n -= ptr2cells(p)) >= 0; p++) { // -V1019
clen = utfc_ptr2len(p);
msg_outtrans_len(p, clen);
p += clen - 1;