From: Vinson Lee Date: Mon, 4 Jan 2010 02:05:12 +0000 (-0800) Subject: r300g: Silence 'mixed declarations and code' warning. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3e196f433dc02654f1c0f7989e2e7e7a5c4b425d;p=mesa.git r300g: Silence 'mixed declarations and code' warning. --- 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))