summaryrefslogtreecommitdiff
path: root/types_cgen.c
diff options
context:
space:
mode:
Diffstat (limited to 'types_cgen.c')
-rw-r--r--types_cgen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/types_cgen.c b/types_cgen.c
index 0eaa4b3..541f1b5 100644
--- a/types_cgen.c
+++ b/types_cgen.c
@@ -1,5 +1,5 @@
static bool cgen_types_stmt(CGenerator *g, Statement *s);
-static bool cgen_types_fn(CGenerator *g, FnExpr *f) {
+static bool cgen_types_fn(CGenerator *g, FnExpr *f, Location where) {
bool ret = true;
/* assign an ID to the function */
if (f->name) {
@@ -27,7 +27,7 @@ static bool cgen_types_expr(CGenerator *g, Expression *e) {
if (e->fn.name && g->block == NULL) { /* write named function prototypes in global scope to header file */
g->writing_to = CGEN_WRITING_TO_H;
}
- if (!cgen_types_fn(g, &e->fn))
+ if (!cgen_types_fn(g, &e->fn, e->where))
return false;
g->writing_to = CGEN_WRITING_TO_C;
} break;