summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2006-04-14 02:21:04 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2006-04-14 02:21:04 +0000
commit61608ecfa70fffaee083c37ce2b0138566b0e327 (patch)
tree85d356c347f18970636dcaa2658ef5b057e78e8d /src
parent767ffdcc9f5d15c88fc4c2f1c5592b7739bd31dd (diff)
silence -pedantic warning
Diffstat (limited to 'src')
-rw-r--r--src/mesa/main/occlude.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/occlude.c b/src/mesa/main/occlude.c
index 483ca5d0c4..2f4be87901 100644
--- a/src/mesa/main/occlude.c
+++ b/src/mesa/main/occlude.c
@@ -42,6 +42,7 @@ struct gl_query_object *
_mesa_new_query_object(GLcontext *ctx, GLuint id)
{
struct gl_query_object *q = MALLOC_STRUCT(gl_query_object);
+ (void) ctx;
if (q) {
q->Id = id;
q->Result = 0;