diff options
Diffstat (limited to 'type.c')
| -rw-r--r-- | type.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -152,7 +152,7 @@ typealign(union type t) case TYENUM: return targ_primalign[t.backing]; case TYARRAY: - return targ_primalign[typechild(t).t]; + return typealign(typechild(t)); case TYSTRUCT: case TYUNION: return typedata[t.dat].align; |