Formatting fixes.

Change-Id: I8947f98088bc7996f33235ab2267e243e45bd8dd
diff --git a/ir-parse.c b/ir-parse.c
index 5d9e6f2..35c35c8 100644
--- a/ir-parse.c
+++ b/ir-parse.c
@@ -152,9 +152,10 @@
 {
 	//Find the correct section type, and parse.
 	int section_converted = 0;
-	for (int i=0; i<section_definitions_len; i++)
-	{
-		if (guid_equal(section_definitions[i].Guid, &descriptor->SectionType) && section_definitions[i].ToCPER != NULL) {
+	for (int i = 0; i < section_definitions_len; i++) {
+		if (guid_equal(section_definitions[i].Guid,
+			       &descriptor->SectionType) &&
+		    section_definitions[i].ToCPER != NULL) {
 			section_definitions[i].ToCPER(section, out);
 			section_converted = 1;
 			break;