summaryrefslogtreecommitdiff
path: root/cgen.c
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2019-08-23 09:31:52 -0400
committerLeo Tenenbaum <pommicket@gmail.com>2019-08-23 09:31:52 -0400
commitde61270e8ed6c152be89c9b10f1354a82712f2df (patch)
tree263d0cec2df0a0079ab3676f169e4fa09efeb1e1 /cgen.c
parent7e1a78361df3c82c8583796fa94905215b103646 (diff)
Cleaned up code
Diffstat (limited to 'cgen.c')
-rw-r--r--cgen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cgen.c b/cgen.c
index 03113b5..a204493 100644
--- a/cgen.c
+++ b/cgen.c
@@ -50,7 +50,7 @@ static void cgen_create(CGenerator *g, FILE *out) {
}
static void cgen_ident(CGenerator *g, Identifier i) {
- ident_fprint(g->out, i);
+ fprint_ident(g->out, i);
}
static const char *builtin_type_to_str(BuiltinType b) {