summaryrefslogtreecommitdiff
path: root/typedefs_cgen.c
diff options
context:
space:
mode:
Diffstat (limited to 'typedefs_cgen.c')
-rw-r--r--typedefs_cgen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/typedefs_cgen.c b/typedefs_cgen.c
index 937be4a..b193e9a 100644
--- a/typedefs_cgen.c
+++ b/typedefs_cgen.c
@@ -115,7 +115,7 @@ static bool typedefs_decl(CGenerator *g, Declaration *d) {
if (d->c.ids == NULL)
d->c.ids = calloc(arr_len(d->idents), sizeof *d->c.ids);
/* generate typedef */
- IdentID id;
+ IdentID id = 0;
if (g->block != NULL) id = d->c.ids[idx] = g->ident_counter++;
if (val->type->kind == TYPE_STRUCT) continue; /* we don't need to typedef this; we can just use its tag */
cgen_write(g, "typedef ");