glsl2: Remove the const disease from function signature's callee.

This commit is contained in:
Eric Anholt
2010-07-18 17:45:16 -07:00
parent 9be7f63813
commit 1f47245bdd
5 changed files with 8 additions and 9 deletions

View File

@@ -64,8 +64,7 @@ process_call(exec_list *instructions, ir_function *f,
{
void *ctx = state;
const ir_function_signature *sig =
f->matching_signature(actual_parameters);
ir_function_signature *sig = f->matching_signature(actual_parameters);
/* The instructions param will be used when the FINISHMEs below are done */
(void) instructions;