Re: [PATCH] hw/display/sm501: Remove unneeded increment from loop

2023-04-13 Thread Daniel Henrique Barboza
On 4/5/23 12:57, BALATON Zoltan wrote: As Coverity points out (CID 1508621) the calculation to increment i in the fill fallback loop is ineffective as it is overwritten in next statement. This was left there by mistake from a previous version but is not needed in the current approach so remove

Re: [PATCH] hw/display/sm501: Remove unneeded increment from loop

2023-04-05 Thread Philippe Mathieu-Daudé
On 5/4/23 17:57, BALATON Zoltan wrote: As Coverity points out (CID 1508621) the calculation to increment i in the fill fallback loop is ineffective as it is overwritten in next statement. This was left there by mistake from a previous version but is not needed in the current approach so remove th

[PATCH] hw/display/sm501: Remove unneeded increment from loop

2023-04-05 Thread BALATON Zoltan
As Coverity points out (CID 1508621) the calculation to increment i in the fill fallback loop is ineffective as it is overwritten in next statement. This was left there by mistake from a previous version but is not needed in the current approach so remove the superfluous increment statement. Repor