diff options
author | Roland Scheidegger <[email protected]> | 2015-05-25 22:24:05 +0200 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2015-05-25 22:24:42 +0200 |
commit | 6a111e54d7578abee6bce4a75ce1399ed369ab5f (patch) | |
tree | b0421653346b69739ffd488af0b14aa314199456 /src/gallium/drivers/llvmpipe | |
parent | bb973723a5e1f27817b6be2c2fa4fb3ea28e733c (diff) |
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: <[email protected]>
Diffstat (limited to 'src/gallium/drivers/llvmpipe')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_query.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |