diff options
-rw-r--r-- | init.c | 2 | ||||
-rw-r--r-- | pp.c | 3 | ||||
-rw-r--r-- | token.c | 2 |
3 files changed, 5 insertions, 2 deletions
@@ -163,6 +163,8 @@ focus(struct initparser *p) p->sub->mem = p->sub->type->structunion.members; t = p->sub->mem->type; break; + default: + fatal("internal error: init cursor has unexpected type"); } subobj(p, t, 0); } @@ -220,8 +220,9 @@ define(void) if (t->kind == TLPAREN && !t->space) { m->kind = MACROFUNC; /* read macro parameter names */ + p = NULL; while (scan(&tok), tok.kind != TRPAREN) { - if (params.len) { + if (p) { if (p->flags & PARAMVAR) tokencheck(&tok, TRPAREN, "after '...'"); tokencheck(&tok, TCOMMA, "or ')' after macro parameter"); @@ -143,7 +143,7 @@ static void tokendesc(char *buf, size_t len, enum tokenkind kind, const char *lit) { const char *class; - bool quote; + bool quote = true; switch (kind) { case TEOF: class = "EOF"; break; |