r300-gallium: add missing semicolon

Yeah, that was stupid
This commit is contained in:
Joakim Sindholt
2009-05-12 22:01:59 +02:00
parent 62c0c7d81a
commit 167a6b0804
+1 -1
View File
@@ -318,7 +318,7 @@ static void r300_bind_fs_state(struct pipe_context* pipe, void* shader)
/* Delete fragment shader state. */
static void r300_delete_fs_state(struct pipe_context* pipe, void* shader)
{
struct r3xx_fragment_shader* fs = (struct r3xx_fragment_shader*)shader
struct r3xx_fragment_shader* fs = (struct r3xx_fragment_shader*)shader;
FREE(fs->state.tokens);
FREE(shader);
}