From: Roland Scheidegger Date: Mon, 25 May 2015 20:24:05 +0000 (+0200) Subject: llvmpipe: (trivial) add parantheses in (!x == y) expression X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6a111e54d7578abee6bce4a75ce1399ed369ab5f;p=mesa.git llvmpipe: (trivial) add parantheses in (!x == y) expression Apparently some compilers think we probably wanted to do !(x == y) instead and issue a warning, so just shut it up... No functional change, obviously. Cc: --- diff --git a/src/gallium/drivers/llvmpipe/lp_query.c b/src/gallium/drivers/llvmpipe/lp_query.c index 4f8bab62e7b..fc593670671 100644 --- a/src/gallium/drivers/llvmpipe/lp_query.c +++ b/src/gallium/drivers/llvmpipe/lp_query.c @@ -315,7 +315,7 @@ llvmpipe_check_render_cond(struct llvmpipe_context *lp) b = pipe->get_query_result(pipe, lp->render_cond_query, wait, (void*)&result); if (b) - return (!result == lp->render_cond_cond); + return ((!result) == lp->render_cond_cond); else return TRUE; }