diff options
author | Brian Paul <[email protected]> | 2010-02-19 08:32:36 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-02-19 08:32:36 -0700 |
commit | 6bf1ea897fa470af58fe8916dff45e2da79634a3 (patch) | |
tree | 109ffe421325506019e5d8007bd6d4a9459619eb /src/mesa/shader/program.c | |
parent | 2240ba10f30315410bcff77e372ee71664ac4453 (diff) |
mesa: replace _mesa_bzero() with memset()
Diffstat (limited to 'src/mesa/shader/program.c')
-rw-r--r-- | src/mesa/shader/program.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/shader/program.c b/src/mesa/shader/program.c index 2410ccb0472..0c3c5ffbd5f 100644 --- a/src/mesa/shader/program.c +++ b/src/mesa/shader/program.c @@ -240,7 +240,7 @@ _mesa_init_program_struct( GLcontext *ctx, struct gl_program *prog, (void) ctx; if (prog) { GLuint i; - _mesa_bzero(prog, sizeof(*prog)); + memset(prog, 0, sizeof(*prog)); prog->Id = id; prog->Target = target; prog->Resident = GL_TRUE; |