mesa: add some braces in _mesa_make_current()
[mesa.git] / src / mesa / main / context.c
index 3057a92ecac827815adc7897758ce3e800505705..fe527a0ae29ba42ac479dac33756b834c68dccc0 100644 (file)
@@ -1663,8 +1663,9 @@ _mesa_make_current( struct gl_context *newCtx,
        /* make sure this context is valid for flushing */
        curCtx != newCtx &&
        curCtx->Const.ContextReleaseBehavior ==
-       GL_CONTEXT_RELEASE_BEHAVIOR_FLUSH)
+       GL_CONTEXT_RELEASE_BEHAVIOR_FLUSH) {
       _mesa_flush(curCtx);
+   }
 
    /* We used to call _glapi_check_multithread() here.  Now do it in drivers */