diff options
author | Brian Paul <[email protected]> | 2002-10-30 19:49:29 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-10-30 19:49:29 +0000 |
commit | 6ec6b845fdf3c44436028ad6fff9471d18928719 (patch) | |
tree | 28496bfcefc250606eef9e1ccb201ae22aa099b6 /src/mesa/main/context.c | |
parent | 9dc11a3e38a0ac0e650675157a0ccb90dcdce976 (diff) |
s/BZERO/_mesa_bzero/
Diffstat (limited to 'src/mesa/main/context.c')
-rw-r--r-- | src/mesa/main/context.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 4f93b1a3750..f43b8708e68 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -1,4 +1,4 @@ -/* $Id: context.c,v 1.187 2002/10/29 15:04:35 brianp Exp $ */ +/* $Id: context.c,v 1.188 2002/10/30 19:49:29 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -451,7 +451,7 @@ _mesa_initialize_framebuffer( GLframebuffer *buffer, assert(buffer); assert(visual); - BZERO(buffer, sizeof(GLframebuffer)); + _mesa_bzero(buffer, sizeof(GLframebuffer)); /* sanity checks */ if (softwareDepth ) { |