From: Brian Paul Date: Tue, 27 Sep 2011 02:44:09 +0000 (-0600) Subject: mesa: fix indentation in mipmap.c (3 spaces) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4c84fbea9d496567d706468113d63cd8f0faeb7f;p=mesa.git mesa: fix indentation in mipmap.c (3 spaces) --- diff --git a/src/mesa/main/mipmap.c b/src/mesa/main/mipmap.c index 1ead5ee104a..e0cc6a2ad5f 100644 --- a/src/mesa/main/mipmap.c +++ b/src/mesa/main/mipmap.c @@ -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; }