diff options
author | Vinson Lee <[email protected]> | 2010-01-03 18:05:12 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2010-01-03 18:05:12 -0800 |
commit | 3e196f433dc02654f1c0f7989e2e7e7a5c4b425d (patch) | |
tree | 3986439b2c8410992762cfcfe93a4f16c863da35 | |
parent | fe3ea299bf8abcf27c8a168138c8fd3f4e43cefa (diff) |
r300g: Silence 'mixed declarations and code' warning.
-rw-r--r-- | src/gallium/drivers/r300/r300_cs.h | 2 |
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 86ba91db52e..5342488d0d4 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)) |