Browse Source

i915g: fix debug dump on 64 bit systems

tags/mesa-8.0-rc1
Michael Karcher 13 years ago
parent
commit
592323de1e
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/gallium/drivers/i915/i915_debug.c

+ 1
- 1
src/gallium/drivers/i915/i915_debug.c View File

@@ -232,7 +232,7 @@ BITS(
... )
{
va_list args;
unsigned himask = ~0UL >> (31 - (hi));
unsigned himask = 0xFFFFFFFFUL >> (31 - (hi));

PRINTF(stream, "\t\t ");


Loading…
Cancel
Save