mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-01-19 14:50:48 +00:00
Merge branch 'master' into blub/bc3
This commit is contained in:
commit
2bfd272714
1 changed files with 1 additions and 1 deletions
2
ast.c
2
ast.c
|
@ -633,7 +633,7 @@ bool ast_function_codegen(ast_function *self, ir_builder *ir)
|
||||||
|
|
||||||
if (!self->builtin && self->vtype->params_count != self->params_count) {
|
if (!self->builtin && self->vtype->params_count != self->params_count) {
|
||||||
printf("ast_function's parameter variables doesn't match the declared parameter count\n");
|
printf("ast_function's parameter variables doesn't match the declared parameter count\n");
|
||||||
printf("%i != %i\n", self->vtype->params_count, self->params_count);
|
printf("%i != %i\n", (int)self->vtype->params_count, (int)self->params_count);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue