diff options
author | Brian Paul <[email protected]> | 2011-11-01 13:34:52 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-11-01 16:39:37 -0600 |
commit | 689df24503d018f2d120316dc99cd96410526895 (patch) | |
tree | 9bc2fa1229de9e96538001dfdf90956c0ae38781 /src/mesa/main/dlist.c | |
parent | f6fa34f7ada52cfe4c811e12ba7e4eef84ba7ca1 (diff) |
mesa: make save_EndConditionalRender param list (void) to silence warning
Diffstat (limited to 'src/mesa/main/dlist.c')
-rw-r--r-- | src/mesa/main/dlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c index 06832b6f586..e1acc802883 100644 --- a/src/mesa/main/dlist.c +++ b/src/mesa/main/dlist.c @@ -7364,7 +7364,7 @@ save_BeginConditionalRender(GLuint queryId, GLenum mode) } static void GLAPIENTRY -save_EndConditionalRender() +save_EndConditionalRender(void) { GET_CURRENT_CONTEXT(ctx); ASSERT_OUTSIDE_SAVE_BEGIN_END_AND_FLUSH(ctx); |