d3dcompiler: Rename "func" to "decl" in free_function_decl().

Mostly just for consistency with other uses of struct hlsl_ir_function_decl.
This commit is contained in:
Henri Verbeet 2015-04-30 16:46:39 +02:00 committed by Alexandre Julliard
parent c05acba168
commit bef432a19c
1 changed files with 5 additions and 5 deletions

View File

@ -2445,12 +2445,12 @@ void free_instr(struct hlsl_ir_node *node)
}
}
static void free_function_decl(struct hlsl_ir_function_decl *func)
static void free_function_decl(struct hlsl_ir_function_decl *decl)
{
d3dcompiler_free((void *)func->semantic);
d3dcompiler_free(func->parameters);
free_instr_list(func->body);
d3dcompiler_free(func);
d3dcompiler_free((void *)decl->semantic);
d3dcompiler_free(decl->parameters);
free_instr_list(decl->body);
d3dcompiler_free(decl);
}
static void free_function_decl_rb(struct wine_rb_entry *entry, void *context)