mesa: fix indentation in mipmap.c (3 spaces)
authorBrian Paul <brianp@vmware.com>
Tue, 27 Sep 2011 02:44:09 +0000 (20:44 -0600)
committerBrian Paul <brianp@vmware.com>
Tue, 27 Sep 2011 02:44:09 +0000 (20:44 -0600)
src/mesa/main/mipmap.c

index 1ead5ee104ab60f4ab52e198ba2144d7663af9ac..e0cc6a2ad5f3a33f1e0e0b301a5516d21afbb398 100644 (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;
 }