diff options
author | Brian Paul <[email protected]> | 2010-02-19 08:09:01 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-02-19 08:09:01 -0700 |
commit | e197de56cdb86835f1437688a9161cd909792d80 (patch) | |
tree | bbdf4447d51a43093d27c3a1016b6f661dc24fa8 /src/mesa/shader/nvprogram.c | |
parent | 2efa86ea3040c37965987160733b22e2a0541a3e (diff) |
mesa: replace old MEMCPY macro with memcpy
Diffstat (limited to 'src/mesa/shader/nvprogram.c')
-rw-r--r-- | src/mesa/shader/nvprogram.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/shader/nvprogram.c b/src/mesa/shader/nvprogram.c index 394b6a42d71..19020be42c7 100644 --- a/src/mesa/shader/nvprogram.c +++ b/src/mesa/shader/nvprogram.c @@ -297,7 +297,7 @@ _mesa_GetProgramStringNV(GLuint id, GLenum pname, GLubyte *program) } if (prog->String) { - MEMCPY(program, prog->String, strlen((char *) prog->String)); + memcpy(program, prog->String, strlen((char *) prog->String)); } else { program[0] = 0; |