From: Michael Karcher Date: Sun, 11 Dec 2011 21:24:10 +0000 (-0800) Subject: i915g: fix debug dump on 64 bit systems X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=592323de1ea5b9e5eab8b66690c8aecc6901c5de;p=mesa.git i915g: fix debug dump on 64 bit systems --- diff --git a/src/gallium/drivers/i915/i915_debug.c b/src/gallium/drivers/i915/i915_debug.c index 295c47e58c2..b6c442dff72 100644 --- a/src/gallium/drivers/i915/i915_debug.c +++ b/src/gallium/drivers/i915/i915_debug.c @@ -232,7 +232,7 @@ BITS( ... ) { va_list args; - unsigned himask = ~0UL >> (31 - (hi)); + unsigned himask = 0xFFFFFFFFUL >> (31 - (hi)); PRINTF(stream, "\t\t ");