From: Ian Romanick Date: Tue, 10 Sep 2013 16:43:56 +0000 (-0500) Subject: mesa: Fix broken call to print_table_stats X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7db6b5aa91a;p=mesa.git 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 Reviewed-by: Brian Paul Reviewed-by: Marek Olšák Reviewed-by: Paul Berry --- 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 }