xvmc: Silence gcc, add parentheses around arithmetic.
Get rid of those accordingly with CFLAGS="-Wall -Werror": | CC i915_xvmc.lo | cc1: warnings being treated as errors | i915_xvmc.c: In function ‘i915_mc_one_time_state_emit’: | i915_xvmc.c:369: error: suggest parentheses around arithmetic in operand of ‘|’ | i915_xvmc.c:374: error: suggest parentheses around arithmetic in operand of ‘|’ | i915_xvmc.c:379: error: suggest parentheses around arithmetic in operand of ‘|’ | i915_xvmc.c: In function ‘i915_mc_load_indirect_render_emit’: | i915_xvmc.c:708: error: suggest parentheses around arithmetic in operand of ‘|’ | i915_xvmc.c:713: error: suggest parentheses around arithmetic in operand of ‘|’ Signed-off-by: Cyril Brulebois <kibi@debian.org> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
This commit is contained in:
parent
1b9349bceb
commit
fc2eb64d7a
|
|
@ -24,7 +24,7 @@ extern int VERBOSE;
|
|||
|
||||
#define OUT_RELOC(bo,read_domains,write_domains,delta) \
|
||||
do { \
|
||||
*(unsigned int *)batch_ptr = delta + bo->offset; \
|
||||
*(unsigned int *)batch_ptr = (delta) + bo->offset; \
|
||||
intel_batch_emit_reloc(bo, read_domains, write_domains, delta, batch_ptr); \
|
||||
batch_ptr += 4; \
|
||||
} while (0)
|
||||
|
|
|
|||
Loading…
Reference in New Issue