| commit | e197de56cdb86835f1437688a9161cd909792d80 | [log] [tgz] |
|---|---|---|
| author | Brian Paul <brianp@vmware.com> | Fri Feb 19 08:09:01 2010 -0700 |
| committer | Brian Paul <brianp@vmware.com> | Fri Feb 19 08:09:01 2010 -0700 |
| tree | bbdf4447d51a43093d27c3a1016b6f661dc24fa8 | |
| parent | 2efa86ea3040c37965987160733b22e2a0541a3e [diff] [blame] |
mesa: replace old MEMCPY macro with memcpy
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index c292d1f..f315f0b 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c
@@ -1108,7 +1108,7 @@ dst->Polygon = src->Polygon; } if (mask & GL_POLYGON_STIPPLE_BIT) { - /* Use loop instead of MEMCPY due to problem with Portland Group's + /* Use loop instead of memcpy due to problem with Portland Group's * C compiler. Reported by John Stone. */ GLuint i;