From: Mark Cave-Ayland Date: Mon, 1 May 2017 07:33:47 +0000 (+0100) Subject: cg3: add explicit ram_addr_t cast to scanline page variable X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=8eb57ae3f9afdd8d911f3b2862e05cd0bb042b4e;p=qemu.git cg3: add explicit ram_addr_t cast to scanline page variable Coverity warns that multiplying two 32-bit values gives a 32-bit result which is assigned to a 64-bit variable. Add an explicit ram_addr_t cast to silence the warning. Signed-off-by: Mark Cave-Ayland Reviewed-by: Philippe Mathieu-Daudé --- diff --git a/hw/display/cg3.c b/hw/display/cg3.c index 03d9197f71..7ef8a96496 100644 --- a/hw/display/cg3.c +++ b/hw/display/cg3.c @@ -113,7 +113,7 @@ static void cg3_update_display(void *opaque) for (y = 0; y < height; y++) { int update = s->full_update; - page = y * width; + page = (ram_addr_t)y * width; update |= memory_region_get_dirty(&s->vram_mem, page, width, DIRTY_MEMORY_VGA); if (update) {