From 4bc36836a10e699cb2fbfd7a34e99e7189b8653e Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Tue, 25 Feb 2020 20:16:37 +0900 Subject: [PATCH] Correct the type of an aux function's return type It was made to be the address of the type encoding long ago. --- include/QF/pr_debug.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/QF/pr_debug.h b/include/QF/pr_debug.h index be5e1471d..be398f056 100644 --- a/include/QF/pr_debug.h +++ b/include/QF/pr_debug.h @@ -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 {