summaryrefslogtreecommitdiff
path: root/src/gallium/drivers
diff options
context:
space:
mode:
authorVinson Lee <vlee@vmware.com>2010-01-03 18:05:12 -0800
committerVinson Lee <vlee@vmware.com>2010-01-03 18:05:12 -0800
commit3e196f433dc02654f1c0f7989e2e7e7a5c4b425d (patch)
tree3986439b2c8410992762cfcfe93a4f16c863da35 /src/gallium/drivers
parentfe3ea299bf8abcf27c8a168138c8fd3f4e43cefa (diff)
r300g: Silence 'mixed declarations and code' warning.
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r--src/gallium/drivers/r300/r300_cs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r300/r300_cs.h b/src/gallium/drivers/r300/r300_cs.h
index 86ba91db52..5342488d0d 100644
--- a/src/gallium/drivers/r300/r300_cs.h
+++ b/src/gallium/drivers/r300/r300_cs.h
@@ -51,7 +51,7 @@
#define CS_LOCALS(context) \
struct r300_context* const cs_context_copy = (context); \
struct r300_winsys* cs_winsys = cs_context_copy->winsys; \
- int cs_count = 0;
+ int cs_count = 0
#define CHECK_CS(size) \
cs_winsys->check_cs(cs_winsys, (size))