mesa: fix indentation in mipmap.c (3 spaces)

This commit is contained in:
Brian Paul 2011-09-26 20:44:09 -06:00
parent 39790b6450
commit 4c84fbea9d

View file

@ -47,9 +47,9 @@ bytes_per_pixel(GLenum datatype, GLuint comps)
assert(b >= 0);
if (_mesa_type_is_packed(datatype))
return b;
return b;
else
return b * comps;
return b * comps;
}