Re: [Mesa-dev] [PATCH] i965: Silece usused variable warning in release build

2013-08-27 Thread Kenneth Graunke
On 08/27/2013 03:11 PM, Chad Versace wrote: Use `(void) success;` to silence this warning: i965/brw_vs.c:481:12: warning: unused variable 'success' [-Wunused-variable] bool success = do_vs_prog(brw, ctx->Shader.CurrentVertexProgram, Signed-off-by: Chad Versace Typo in commit

[Mesa-dev] [PATCH] i965: Silece usused variable warning in release build

2013-08-27 Thread Chad Versace
Use `(void) success;` to silence this warning: i965/brw_vs.c:481:12: warning: unused variable 'success' [-Wunused-variable] bool success = do_vs_prog(brw, ctx->Shader.CurrentVertexProgram, Signed-off-by: Chad Versace --- src/mesa/drivers/dri/i965/brw_vs.c | 2 +- 1 file changed, 1