From: Vinson Lee Date: Sat, 12 Dec 2009 23:27:30 +0000 (-0800) Subject: t_dd_dmatmp.h: Silence unused value warning in render_poly_verts. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=de9132f2740d3959af548e36e9b280e9853e59b6;p=mesa.git t_dd_dmatmp.h: Silence unused value warning in render_poly_verts. --- diff --git a/src/mesa/tnl_dd/t_dd_dmatmp.h b/src/mesa/tnl_dd/t_dd_dmatmp.h index f363009be48..7eadfc6219f 100644 --- a/src/mesa/tnl_dd/t_dd_dmatmp.h +++ b/src/mesa/tnl_dd/t_dd_dmatmp.h @@ -400,6 +400,7 @@ static void TAG(render_poly_verts)( GLcontext *ctx, tmp = ALLOC_VERTS( nr ); tmp = TAG(emit_verts)( ctx, start, 1, tmp ); tmp = TAG(emit_verts)( ctx, j, nr - 1, tmp ); + (void) tmp; currentsz = dmasz; }