mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-23 19:01:06 +00:00
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:
parent
89e83d7d73
commit
4bc36836a1
1 changed files with 1 additions and 2 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue