From: Vinson Lee Date: Sun, 13 Dec 2009 04:20:02 +0000 (-0800) Subject: t_dd_dmatmp.h: Silence unused value warning in render_poly_elts. X-Git-Tag: 062012170305~12852^2~1452^2~370^2~41 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=20590b97336c4ebe5d2bcee51d66820e1e5d26c8;p=profile%2Fivi%2Fmesa.git t_dd_dmatmp.h: Silence unused value warning in render_poly_elts. --- diff --git a/src/mesa/tnl_dd/t_dd_dmatmp.h b/src/mesa/tnl_dd/t_dd_dmatmp.h index 7182978..d568bfd 100644 --- a/src/mesa/tnl_dd/t_dd_dmatmp.h +++ b/src/mesa/tnl_dd/t_dd_dmatmp.h @@ -991,6 +991,7 @@ static void TAG(render_poly_elts)( GLcontext *ctx, tmp = ALLOC_ELTS( nr ); tmp = TAG(emit_elts)( ctx, elts+start, 1, tmp ); tmp = TAG(emit_elts)( ctx, elts+j, nr - 1, tmp ); + (void) tmp; FLUSH(); currentsz = dmasz; }