commit 95bec877561deeb75c825e68850ec58d58c8ef8a parent 50234da1803c246f6b44b5c0a242fa6ff266f3b4 Author: Quentin Rameau <quinq@fifth.space> Date: Thu, 19 May 2016 20:26:29 +0200 [cc2] Fix typo in previous TSIZE removal commit 9fb2e7 Diffstat:
M | cc2/arch/i386-sysv/code.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cc2/arch/i386-sysv/code.c b/cc2/arch/i386-sysv/code.c @@ -162,7 +162,7 @@ label(Symbol *sym) break; } if (sym->type.align != 1) - printf("\t.align\t%lud\n", sym->type.align ); + printf("\t.align\t%lu\n", sym->type.align ); printf("%s:\n", name); }