summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/i915/i915_debug.c
diff options
context:
space:
mode:
authorJakob Bornecrantz <jakob@vmware.com>2009-10-13 15:32:04 +0100
committerJakob Bornecrantz <wallbraker@gmail.com>2009-10-14 23:05:55 +0100
commit96c9b39a6a9553573fcbdb5fd6db0e9d59768442 (patch)
tree325ef14f7476ce684aeccfca6e65256f9a06eccc /src/gallium/drivers/i915/i915_debug.c
parentf22c427bd685f55e6f7e29dcd72cdb1aa42f04d9 (diff)
i915g: Fix warnings
Diffstat (limited to 'src/gallium/drivers/i915/i915_debug.c')
-rw-r--r--src/gallium/drivers/i915/i915_debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/i915/i915_debug.c b/src/gallium/drivers/i915/i915_debug.c
index ce92d1af9a..e6640e587b 100644
--- a/src/gallium/drivers/i915/i915_debug.c
+++ b/src/gallium/drivers/i915/i915_debug.c
@@ -880,7 +880,7 @@ i915_dump_batchbuffer( struct intel_batchbuffer *batch )
return;
}
- debug_printf( "\n\nBATCH: (%d)\n", bytes / 4);
+ debug_printf( "\n\nBATCH: (%d)\n", (int)bytes / 4);
while (!done &&
stream.offset < bytes)