identifier name clash


git-svn-id: https://asn1c.svn.sourceforge.net/svnroot/asn1c/trunk@1144 59561ff5-6e30-0410-9f3c-9617f08c8826
diff --git a/libasn1fix/asn1fix_integer.c b/libasn1fix/asn1fix_integer.c
index 8a14491..0302acd 100644
--- a/libasn1fix/asn1fix_integer.c
+++ b/libasn1fix/asn1fix_integer.c
@@ -38,20 +38,17 @@
 		 * Found "...", check correctness.
 		 */
 		if(iv->expr_type == A1TC_EXTENSIBLE) {
-			arg->eh(1,
-				"INTEGER %s at line %d: "
+			FATAL("INTEGER %s at line %d: "
 				"Extension marker is not allowed",
 				expr->Identifier,
-				iv->_lineno
-			);
+				iv->_lineno);
 			rvalue = -1;
 			continue;
 		}
 
 		if(iv->Identifier == NULL
 		|| iv->expr_type != A1TC_UNIVERVAL) {
-			arg->eh(1,
-				"INTEGER %s at line %d: "
+			FATAL("INTEGER %s at line %d: "
 				"Unsupported enumeration element %s",
 				expr->Identifier,
 				iv->_lineno,
@@ -62,8 +59,7 @@
 		}
 
 		if(iv->value == NULL) {
-			arg->eh(1,
-				"INTEGER %s at line %d: "
+			FATAL("INTEGER %s at line %d: "
 				"Value for the identifier %s "
 				"must be set explicitly",
 				expr->Identifier,
@@ -84,8 +80,7 @@
 		}
 
 		if(iv->value->type != ATV_INTEGER) {
-			arg->eh(1,
-				"INTEGER %s at line %d: "
+			FATAL("INTEGER %s at line %d: "
 				"Value for the identifier %s "
 				"is not compatible with INTEGER type",
 				expr->Identifier,