diff options
author | Brian Paul <[email protected]> | 2009-11-02 15:29:54 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-11-03 09:52:25 -0700 |
commit | 5698d7cd7557659440f8417716839ba07cffc5a5 (patch) | |
tree | 954be0cb8c431d89856ce18632a5e117206d30d2 /src/mesa | |
parent | 18af75e5011cc31b52d62befba2cacfd353ce638 (diff) |
mesa: clean-up formatting
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/main/buffers.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |