From 3663c0f82527d972a7e5b85937d8da60253eb6f3 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Thu, 15 Jan 2004 00:29:51 +0000 Subject: Cosmetic changes. Added a bunch of const qualifiers. Use _mesa_memcpy() instead of memcpy(), etc. --- src/mesa/main/arbparse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mesa/main') diff --git a/src/mesa/main/arbparse.c b/src/mesa/main/arbparse.c index d1ea9d4..ddffbc2 100644 --- a/src/mesa/main/arbparse.c +++ b/src/mesa/main/arbparse.c @@ -2638,7 +2638,7 @@ grammar_check (dict * di, const GLubyte * text, GLubyte ** production, return 0; } - memcpy (*production, ba->data, ba->len * sizeof (GLubyte)); + _mesa_memcpy(*production, ba->data, ba->len * sizeof (GLubyte)); *size = ba->len; barray_destroy (&ba); -- cgit v1.1