diff options
Diffstat (limited to 'scripts/asn1_compiler.c')
-rw-r--r-- | scripts/asn1_compiler.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/asn1_compiler.c b/scripts/asn1_compiler.c index 0515bced929a..1c75e22b6385 100644 --- a/scripts/asn1_compiler.c +++ b/scripts/asn1_compiler.c | |||
@@ -1401,7 +1401,8 @@ static void render_element(FILE *out, struct element *e, struct element *tag) | |||
1401 | act = e->action ? "_ACT" : ""; | 1401 | act = e->action ? "_ACT" : ""; |
1402 | switch (e->compound) { | 1402 | switch (e->compound) { |
1403 | case ANY: | 1403 | case ANY: |
1404 | render_opcode(out, "ASN1_OP_%sMATCH_ANY%s,", cond, act); | 1404 | render_opcode(out, "ASN1_OP_%sMATCH_ANY%s%s,", |
1405 | cond, act, skippable ? "_OR_SKIP" : ""); | ||
1405 | if (e->name) | 1406 | if (e->name) |
1406 | render_more(out, "\t\t// %*.*s", | 1407 | render_more(out, "\t\t// %*.*s", |
1407 | (int)e->name->size, (int)e->name->size, | 1408 | (int)e->name->size, (int)e->name->size, |