From: Brian Paul Date: Mon, 2 Nov 2009 22:29:54 +0000 (-0700) Subject: mesa: clean-up formatting X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5698d7cd7557659440f8417716839ba07cffc5a5;p=mesa.git mesa: clean-up formatting --- diff --git a/src/mesa/main/buffers.c b/src/mesa/main/buffers.c index 740ac3f4aef..e76cf87cb02 100644 --- a/src/mesa/main/buffers.c +++ b/src/mesa/main/buffers.c @@ -338,7 +338,7 @@ _mesa_DrawBuffersARB(GLsizei n, const GLenum *buffers) if (ctx->Driver.DrawBuffers) ctx->Driver.DrawBuffers(ctx, n, buffers); else if (ctx->Driver.DrawBuffer) - ctx->Driver.DrawBuffer(ctx, n>0? buffers[0]:GL_NONE); + ctx->Driver.DrawBuffer(ctx, n > 0 ? buffers[0] : GL_NONE); }