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

@@ -632,7 +632,7 @@ read_call(_mesa_glsl_parse_state *st, s_list *list)
return NULL;
}
const ir_function_signature *callee = f->matching_signature(&parameters);
ir_function_signature *callee = f->matching_signature(&parameters);
if (callee == NULL) {
ir_read_error(st, list, "couldn't find matching signature for function "
"%s", name->value());