summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2013-12-13 15:55:28 -0800
committerBrian Paul <[email protected]>2013-12-17 09:47:47 -0800
commit188630dc13b52ce9c64166da9a9df6a644b1599c (patch)
tree8f9b0548670d2e632e011aed6992206a49eef871 /src/mesa/drivers
parentd79058d1c6fb9fec71e866f29338b388291eb256 (diff)
swrast: silence driContextSetFlags() parameter type warning
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r--src/mesa/drivers/dri/swrast/swrast.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/swrast/swrast.c b/src/mesa/drivers/dri/swrast/swrast.c
index cfa9316a2da..79a27408fb3 100644
--- a/src/mesa/drivers/dri/swrast/swrast.c
+++ b/src/mesa/drivers/dri/swrast/swrast.c
@@ -705,7 +705,7 @@ dri_create_context(gl_api api,
goto context_fail;
}
- driContextSetFlags(ctx, flags);
+ driContextSetFlags(mesaCtx, flags);
/* do bounds checking to prevent segfaults and server crashes! */
mesaCtx->Const.CheckArrayBounds = GL_TRUE;