diff options
author | Vinson Lee <vlee@vmware.com> | 2009-12-27 18:09:58 -0800 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2009-12-27 18:09:58 -0800 |
commit | f31f9cf485ba3e735c9e10acc715897e0151492c (patch) | |
tree | 6257e874a4a28d5141938d6ed0d46f82b9ed4bfe | |
parent | 3a2f96f18aab60ed061339f74792307964c284a2 (diff) |
i915g: Silence unused variable warning.
-rw-r--r-- | src/gallium/drivers/i915/i915_buffer.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/i915/i915_buffer.c b/src/gallium/drivers/i915/i915_buffer.c index effeba1297..669964770d 100644 --- a/src/gallium/drivers/i915/i915_buffer.c +++ b/src/gallium/drivers/i915/i915_buffer.c @@ -111,6 +111,7 @@ i915_buffer_unmap(struct pipe_screen *screen, { struct i915_buffer *buf = i915_buffer(buffer); assert(!buf->ibuf); + (void) buf; } static void |