shithub: scc

Download patch

ref: d081eceaa65630875c08f6ce90ad904e4bb82be3
parent: 71355d268cb35f7217667dd8d8f266fe6071585a
author: Quentin Rameau <quinq@fifth.space>
date: Thu May 19 16:26:29 EDT 2016

[cc2] Fix typo in previous TSIZE removal commit 9fb2e7

--- a/cc2/arch/i386-sysv/code.c
+++ b/cc2/arch/i386-sysv/code.c
@@ -162,7 +162,7 @@
 		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);
 }