program.ld: terminate ALIGN statement

This fixes building with CONFIG_COVERAGE=y

Change-Id: I5128ae0ef0d4f71e3ede7bcb3ee7ed7e265d1bb7
Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Reviewed-on: http://review.coreboot.org/11729
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
diff --git a/src/lib/program.ld b/src/lib/program.ld
index ab36239..4c24231 100644
--- a/src/lib/program.ld
+++ b/src/lib/program.ld
@@ -69,7 +69,7 @@
 
 #if ENV_RAMSTAGE && IS_ENABLED(CONFIG_COVERAGE)
 .ctors . : {
-	. = ALIGN(0x100)
+	. = ALIGN(0x100);
 	__CTOR_LIST__ = .;
 	KEEP(*(.ctors));
 	LONG(0);