From: Nicolai Hähnle Date: Fri, 18 Aug 2017 18:28:02 +0000 (+0200) Subject: gallium/radeon: fix saving multi-part command streams X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=83c5d12d9d7403c0943048139f7cafb93dcf4866;p=mesa.git gallium/radeon: fix saving multi-part command streams Use the correct type to fix pointer arithmetic. Reviewed-by: Marek Olšák --- diff --git a/src/gallium/drivers/radeon/r600_pipe_common.c b/src/gallium/drivers/radeon/r600_pipe_common.c index 37c12dea374..7226fc21a04 100644 --- a/src/gallium/drivers/radeon/r600_pipe_common.c +++ b/src/gallium/drivers/radeon/r600_pipe_common.c @@ -495,7 +495,7 @@ static void r600_flush_dma_ring(void *ctx, unsigned flags, void radeon_save_cs(struct radeon_winsys *ws, struct radeon_winsys_cs *cs, struct radeon_saved_cs *saved, bool get_buffer_list) { - void *buf; + uint32_t *buf; unsigned i; /* Save the IB chunks. */