Commit 0a95d03d authored by Lev Walkin's avatar Lev Walkin

explicit module is not necessary

parent 0ffabe28
...@@ -43,15 +43,13 @@ asn1f_class_access_ex(asn1p_t *asn, ...@@ -43,15 +43,13 @@ asn1f_class_access_ex(asn1p_t *asn,
} }
asn1p_expr_t * asn1p_expr_t *
asn1f_find_terminal_type_ex(asn1p_t *asn, asn1f_find_terminal_type_ex(asn1p_t *asn, asn1p_expr_t *expr) {
asn1p_module_t *mod,
asn1p_expr_t *expr) {
arg_t arg; arg_t arg;
memset(&arg, 0, sizeof(arg)); memset(&arg, 0, sizeof(arg));
arg.asn = asn; arg.asn = asn;
arg.mod = mod; arg.mod = expr->module;
arg.expr = expr; arg.expr = expr;
arg.eh = a1f_replace_me_with_proper_interface_arg.eh; arg.eh = a1f_replace_me_with_proper_interface_arg.eh;
arg.debug = a1f_replace_me_with_proper_interface_arg.debug; arg.debug = a1f_replace_me_with_proper_interface_arg.debug;
......
...@@ -31,8 +31,7 @@ asn1p_expr_t *asn1f_class_access_ex(asn1p_t *asn, asn1p_module_t *mod, ...@@ -31,8 +31,7 @@ asn1p_expr_t *asn1f_class_access_ex(asn1p_t *asn, asn1p_module_t *mod,
/* /*
* Exportable version of asn1f_find_terminal_type(). * Exportable version of asn1f_find_terminal_type().
*/ */
asn1p_expr_t *asn1f_find_terminal_type_ex(asn1p_t *asn, asn1p_module_t *mod, asn1p_expr_t *asn1f_find_terminal_type_ex(asn1p_t *asn, asn1p_expr_t *tc);
asn1p_expr_t *tc);
/* /*
* Exportable version of asn1f_fix_dereference_values(); * Exportable version of asn1f_fix_dereference_values();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment