From: Keith Whitwell Date: Thu, 20 Mar 2008 19:25:44 +0000 (+0000) Subject: gallium: remove unused local var X-Git-Tag: 062012170305~17580^2~390^2~2184 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f259ea0347754e0e8c93fd16796fc1db72b03372;p=profile%2Fivi%2Fmesa.git gallium: remove unused local var --- diff --git a/src/gallium/auxiliary/util/u_simple_shaders.c b/src/gallium/auxiliary/util/u_simple_shaders.c index fca6f11..442467e 100644 --- a/src/gallium/auxiliary/util/u_simple_shaders.c +++ b/src/gallium/auxiliary/util/u_simple_shaders.c @@ -278,7 +278,7 @@ util_make_fragment_passthrough_shader(struct pipe_context *pipe) struct tgsi_full_declaration decl; struct tgsi_full_instruction inst; const uint procType = TGSI_PROCESSOR_FRAGMENT; - uint ti, i; + uint ti; struct pipe_shader_state shader; tokens = (struct tgsi_token *) malloc(maxTokens * sizeof(tokens[0]));