From fbdd7a5e7487849bfe06a7bef68b4dad75f5d58c Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Mon, 14 Feb 2005 09:25:08 +0000 Subject: fix signed vs unsigned comparison warnings in tnl_dd --- src/mesa/tnl_dd/t_dd_tritmp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mesa/tnl_dd/t_dd_tritmp.h') diff --git a/src/mesa/tnl_dd/t_dd_tritmp.h b/src/mesa/tnl_dd/t_dd_tritmp.h index bc1617eae3..6ba15cea02 100644 --- a/src/mesa/tnl_dd/t_dd_tritmp.h +++ b/src/mesa/tnl_dd/t_dd_tritmp.h @@ -749,7 +749,7 @@ static void TAG(line)( GLcontext *ctx, GLuint e0, GLuint e1 ) static void TAG(points)( GLcontext *ctx, GLuint first, GLuint last ) { struct vertex_buffer *VB = &TNL_CONTEXT( ctx )->vb; - int i; + GLuint i; LOCAL_VARS(1); if (VB->Elts == 0) { -- cgit v1.2.3