lib/asn1: free_type fix HEIM_FALLTHROUGH usage

To function HEIM_FALLTHROUGH should not be embedded in a comment.
This commit is contained in:
Jeffrey Altman
2022-11-16 11:18:36 -05:00
parent 9d1bfab988
commit a9fca332da

View File

@@ -56,7 +56,7 @@ free_type (const char *name, const Type *t, int preserve)
free_primitive ("heim_integer", name);
break;
}
/* HEIM_FALLTHROUGH; */
HEIM_FALLTHROUGH;
case TBoolean:
case TEnumerated :
case TNull:
@@ -237,4 +237,3 @@ generate_type_free (const Symbol *s)
}
fprintf (codefile, "}\n\n");
}