swrast: s/GLfloat/GLuint/ in bzero()

This commit is contained in:
Brian Paul 2009-10-07 08:07:53 -06:00
parent 14f21c7850
commit edbaa717b4
1 changed files with 1 additions and 1 deletions

View File

@ -1274,7 +1274,7 @@ _swrast_read_depth_span_uint( GLcontext *ctx, struct gl_renderbuffer *rb,
{
if (!rb) {
/* really only doing this to prevent FP exceptions later */
_mesa_bzero(depth, n * sizeof(GLfloat));
_mesa_bzero(depth, n * sizeof(GLuint));
return;
}