diff options
author | Eric Anholt <eric@anholt.net> | 2014-01-28 18:09:54 -0800 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2014-04-11 11:12:33 -0700 |
commit | 1c81468e5f486f62b8679b05a64b06a50bab9f60 (patch) | |
tree | e1b5e563c3a1d80246bc62c202915305676b36ff | |
parent | b7b7e9ca18ecd80581588fc333a948f069d0fcb0 (diff) |
Fix a compiler warning from a khronos prototype change.epoxy
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
-rw-r--r-- | tests/spec/arb_debug_output/api_error.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/spec/arb_debug_output/api_error.c b/tests/spec/arb_debug_output/api_error.c index 8f00b1cfc..5e2bddcb3 100644 --- a/tests/spec/arb_debug_output/api_error.c +++ b/tests/spec/arb_debug_output/api_error.c @@ -49,7 +49,7 @@ static void GLAPIENTRY debug_callback(GLenum source, GLenum severity, GLsizei length, const GLchar* message, - GLvoid* userParam) + const GLvoid* userParam) { if (source != GL_DEBUG_SOURCE_API_ARB) { puts("source isn't API"); |