stage3/print_datatypes_error.cc
changeset 510 9317e04c1dde
parent 502 a6211f73690b
child 514 c2880eba49a1
--- a/stage3/print_datatypes_error.cc	Sun Apr 15 19:56:33 2012 +0100
+++ b/stage3/print_datatypes_error.cc	Mon Apr 16 14:41:07 2012 +0100
@@ -61,7 +61,7 @@
     fprintf(stderr, __VA_ARGS__);                                                                                           \
     fprintf(stderr, "\n");                                                                                                  \
     il_error = true;                                                                                                        \
-    error_found = true;                                                                                                     \
+    error_count++;                                                                                                     \
   }                                                                                                                         \
 }  
 
@@ -80,7 +80,7 @@
 static int debug = 0;
 
 print_datatypes_error_c::print_datatypes_error_c(symbol_c *ignore) {
-	error_found = false;
+	error_count = 0;
 	warning_found = false;
 	current_display_error_level = error_level_default;
 }
@@ -88,8 +88,8 @@
 print_datatypes_error_c::~print_datatypes_error_c(void) {
 }
 
-int print_datatypes_error_c::get_error_found() {
-	return error_found;
+int print_datatypes_error_c::get_error_count() {
+	return error_count;
 }