From 4839353634b22a38148f35046b8d4ceb0d3add9d Mon Sep 17 00:00:00 2001 From: Giuseppe Bilotta Date: Sat, 28 Nov 2015 16:43:56 +0100 Subject: [PATCH] radeon: const correctness Add missing `const` specifier for pointer pointing to a const struct. Signed-off-by: Giuseppe Bilotta Reviewed-by: Ian Romanick Reviewed-by: Emil Velikov --- src/mesa/drivers/dri/radeon/radeon_swtcl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/drivers/dri/radeon/radeon_swtcl.c b/src/mesa/drivers/dri/radeon/radeon_swtcl.c index ed6b25ccea5..adc146852ea 100644 --- a/src/mesa/drivers/dri/radeon/radeon_swtcl.c +++ b/src/mesa/drivers/dri/radeon/radeon_swtcl.c @@ -414,7 +414,7 @@ static GLboolean radeon_run_render( struct gl_context *ctx, r100ContextPtr rmesa = R100_CONTEXT(ctx); TNLcontext *tnl = TNL_CONTEXT(ctx); struct vertex_buffer *VB = &tnl->vb; - tnl_render_func *tab = TAG(render_tab_verts); + const tnl_render_func *tab = TAG(render_tab_verts); GLuint i; if (rmesa->radeon.swtcl.RenderIndex != 0 || -- 2.30.2