From: Brian Paul Date: Thu, 10 Apr 2003 19:57:19 +0000 (+0000) Subject: remove a const X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6cfaff16334981a247694b2ca30fffc398a330d0;p=mesa.git remove a const --- diff --git a/src/mesa/tnl/t_array_api.c b/src/mesa/tnl/t_array_api.c index 76fc607842e..95bc293beef 100644 --- a/src/mesa/tnl/t_array_api.c +++ b/src/mesa/tnl/t_array_api.c @@ -1,5 +1,3 @@ -/* $Id: t_array_api.c,v 1.32 2003/04/10 10:03:30 keithw Exp $ */ - /* * Mesa 3-D graphics library * Version: 5.1 @@ -73,7 +71,7 @@ static void fallback_drawelements( GLcontext *ctx, GLenum mode, GLsizei count, static void _tnl_draw_range_elements( GLcontext *ctx, GLenum mode, GLuint start, GLuint end, - GLsizei count, const GLuint *indices ) + GLsizei count, GLuint *indices ) { TNLcontext *tnl = TNL_CONTEXT(ctx);