diff --git a/lib/asn1/gen_decode.c b/lib/asn1/gen_decode.c index ee387a000..9bd278c2b 100644 --- a/lib/asn1/gen_decode.c +++ b/lib/asn1/gen_decode.c @@ -517,7 +517,8 @@ decode_type (const char *name, const Type *t, int optional, } else { fprintf(codefile, "if (e == 0 && %s != %s) { e = ASN1_BAD_ID; }\n", - typestring, is_primitive_type(t->subtype->type) ? "PRIM" : "CONS"); + typestring, + is_primitive_type(t->subtype->type) ? "PRIM" : "CONS"); } if(optional) {