ANY type renamed

diff --git a/libasn1parser/asn1p_y.y b/libasn1parser/asn1p_y.y
index 3e71250..317bba0 100644
--- a/libasn1parser/asn1p_y.y
+++ b/libasn1parser/asn1p_y.y
@@ -1076,7 +1076,7 @@
 	| TOK_ANY 					{
 		$$ = asn1p_expr_new(asn1p_lineno);
 		checkmem($$);
-		$$->expr_type = ASN_CONSTR_ANY;
+		$$->expr_type = ASN_TYPE_ANY;
 		$$->meta_type = AMT_TYPE;
 	}
 	| TOK_ANY TOK_DEFINED TOK_BY Identifier		{
@@ -1087,10 +1087,9 @@
 		ret = asn1p_ref_add_component($$->reference,
 			$4, RLT_lowercase);
 		checkmem(ret == 0);
-		$$->expr_type = ASN_CONSTR_ANY;
+		$$->expr_type = ASN_TYPE_ANY;
 		$$->meta_type = AMT_TYPE;
 	}
-	;
 	/*
 	 * A parametrized assignment.
 	 */