diff options
Diffstat (limited to 'bootstrap/dump.c')
| -rw-r--r-- | bootstrap/dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap/dump.c b/bootstrap/dump.c index d4fe7e2..91832fd 100644 --- a/bootstrap/dump.c +++ b/bootstrap/dump.c @@ -54,7 +54,7 @@ pritype(const struct type *ty) { case TYeunion: kind = "tagged union"; agg: - epri("%s", ty->agg.name ? ty->agg.name : "(anonymous %s)", kind); + epri(ty->agg.name ? ty->agg.name : "(anonymous %s)", kind); if (ty->agg.tpargs.n) { epri("<"); int n = ty->agg.tpargs.n; |