From 61608ecfa70fffaee083c37ce2b0138566b0e327 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Fri, 14 Apr 2006 02:21:04 +0000 Subject: [PATCH] silence -pedantic warning --- src/mesa/main/occlude.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mesa/main/occlude.c b/src/mesa/main/occlude.c index 483ca5d..2f4be87 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; -- 2.7.4