diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2006-04-14 02:21:04 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2006-04-14 02:21:04 +0000 |
commit | 61608ecfa70fffaee083c37ce2b0138566b0e327 (patch) | |
tree | 85d356c347f18970636dcaa2658ef5b057e78e8d /src/mesa/main/occlude.c | |
parent | 767ffdcc9f5d15c88fc4c2f1c5592b7739bd31dd (diff) |
silence -pedantic warning
Diffstat (limited to 'src/mesa/main/occlude.c')
-rw-r--r-- | src/mesa/main/occlude.c | 1 |
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; |