Correct the type of an aux function's return type

It was made to be the address of the type encoding long ago.
This commit is contained in:
Bill Currie 2020-02-25 20:16:37 +09:00
parent 89e83d7d73
commit 4bc36836a1

View file

@ -39,8 +39,7 @@ typedef struct pr_auxfunction_s {
pr_uint_t line_info; // index to first lineno entry
pr_uint_t local_defs; // index to the first local def
pr_uint_t num_locals; // number of local defs
pr_short_t return_type; // return type of this function
pr_short_t reserved;
pr_uint_t return_type; // return type of this function
} pr_auxfunction_t;
typedef struct pr_lineno_s {