summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/get.c
diff options
context:
space:
mode:
authorIan Romanick <[email protected]>2013-09-10 11:43:56 -0500
committerIan Romanick <[email protected]>2013-09-19 17:15:09 -0500
commit7db6b5aa91aaa279ed9a4319d4bf37c3d551a1d3 (patch)
tree39e7cb302c83500788c34446ec5d73208c07fbbf /src/mesa/main/get.c
parentb4cf56cdf81226ad801d8bf98bb1dad83536f016 (diff)
mesa: Fix broken call to print_table_stats
The function takes a parameter, but none was given. Also, in the non-GET_DEBUG case, silence the unused parameter warning. Signed-off-by: Ian Romanick <[email protected]> Reviewed-by: Brian Paul <[email protected]> Reviewed-by: Marek Olšák <[email protected]> Reviewed-by: Paul Berry <[email protected]>
Diffstat (limited to 'src/mesa/main/get.c')
-rw-r--r--src/mesa/main/get.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/main/get.c b/src/mesa/main/get.c
index 34eb6beb8a9..d9499ccf2b8 100644
--- a/src/mesa/main/get.c
+++ b/src/mesa/main/get.c
@@ -508,7 +508,9 @@ print_table_stats(int api)
void _mesa_init_get_hash(struct gl_context *ctx)
{
#ifdef GET_DEBUG
- print_table_stats();
+ print_table_stats(ctx->API);
+#else
+ (void) ctx;
#endif
}