From: Vinson Lee Date: Sat, 12 Dec 2009 20:52:02 +0000 (-0800) Subject: t_dd_dmatmp.h: Silence unused value warning in render_line_loop_verts. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c2cee7741e877bb78480eae8b8b5bfb55b42158c;p=mesa.git t_dd_dmatmp.h: Silence unused value warning in render_line_loop_verts. --- diff --git a/src/mesa/tnl_dd/t_dd_dmatmp.h b/src/mesa/tnl_dd/t_dd_dmatmp.h index f5d21b8fdc5..5151949063c 100644 --- a/src/mesa/tnl_dd/t_dd_dmatmp.h +++ b/src/mesa/tnl_dd/t_dd_dmatmp.h @@ -255,6 +255,7 @@ static void TAG(render_line_loop_verts)( GLcontext *ctx, tmp = ALLOC_VERTS(2); tmp = TAG(emit_verts)( ctx, start+1, 1, tmp ); tmp = TAG(emit_verts)( ctx, start, 1, tmp ); + (void) tmp; } FLUSH();