summaryrefslogtreecommitdiff
path: root/src/mesa/vf
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/vf')
-rw-r--r--src/mesa/vf/vf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/vf/vf.c b/src/mesa/vf/vf.c
index 82f3d2b641..15a78c4c0a 100644
--- a/src/mesa/vf/vf.c
+++ b/src/mesa/vf/vf.c
@@ -296,7 +296,7 @@ void vf_get_attr( struct vertex_fetch *vf,
/* Else return the value from ctx->Current.
*/
- _mesa_memcpy( dest, dflt, 4*sizeof(GLfloat));
+ memcpy( dest, dflt, 4*sizeof(GLfloat));
}