aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--decl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/decl.c b/decl.c
index 8cbb86e..67fbef3 100644
--- a/decl.c
+++ b/decl.c
@@ -207,8 +207,8 @@ tagspec(struct scope *s)
case TYPESTRUCT:
case TYPEUNION:
end = &t->structunion.members;
- while (tok.kind != TRBRACE)
- structdecl(s, t, &end);
+ do structdecl(s, t, &end);
+ while (tok.kind != TRBRACE);
next();
t->size = ALIGNUP(t->size, t->align);
t->incomplete = false;