mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-09-09 00:07:57 -06:00
Sparc32: remove dead increment, spotted by clang
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
f368a3cea4
commit
f7e683b8c3
1 changed files with 1 additions and 1 deletions
2
hw/tcx.c
2
hw/tcx.c
|
@ -161,7 +161,7 @@ static inline void tcx24_draw_line32(TCXState *s1, uint8_t *d,
|
||||||
p8++;
|
p8++;
|
||||||
b = *p8++;
|
b = *p8++;
|
||||||
g = *p8++;
|
g = *p8++;
|
||||||
r = *p8++;
|
r = *p8;
|
||||||
if (bgr)
|
if (bgr)
|
||||||
dval = rgb_to_pixel32bgr(r, g, b);
|
dval = rgb_to_pixel32bgr(r, g, b);
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue