Remove diagnostic prints.
diff --git a/cper-parse.c b/cper-parse.c
index 4bb6797..bf34c67 100644
--- a/cper-parse.c
+++ b/cper-parse.c
@@ -57,7 +57,6 @@
//Create the header JSON object from the read bytes.
json_object* header_ir = cper_header_to_ir(&header);
- printf("Finished header.\n");
//Read the appropriate number of section descriptors & sections, and convert them into IR format.
json_object* section_descriptors_ir = json_object_new_array();
@@ -72,11 +71,9 @@
return NULL;
}
json_object_array_add(section_descriptors_ir, cper_section_descriptor_to_ir(§ion_descriptor));
- printf("Finished descriptor %d.\n", i+1);
//Read the section itself.
json_object_array_add(sections_ir, cper_section_to_ir(cper_file, §ion_descriptor));
- printf("Finished section %d.\n", i+1);
}
//Add the header, section descriptors, and sections to a parent object.