diff options
author | Brian Paul <[email protected]> | 2004-01-15 00:29:51 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2004-01-15 00:29:51 +0000 |
commit | 3663c0f82527d972a7e5b85937d8da60253eb6f3 (patch) | |
tree | 6a571530e63a97a1ffb643af83474e63d7ea7229 /src/mesa/main/arbparse.c | |
parent | 5bae6b90f93bb1bc2d85efe3de963fb49a38fed1 (diff) |
Cosmetic changes.
Added a bunch of const qualifiers.
Use _mesa_memcpy() instead of memcpy(), etc.
Diffstat (limited to 'src/mesa/main/arbparse.c')
-rw-r--r-- | src/mesa/main/arbparse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/arbparse.c b/src/mesa/main/arbparse.c index d1ea9d4984d..ddffbc2b14c 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); |