[qfcc] Make some counts unsigned

How do you have -1 def?
This commit is contained in:
Bill Currie 2020-03-15 01:33:25 +09:00
parent 9a08a51ebd
commit 968de155a1
1 changed files with 7 additions and 7 deletions

View File

@ -60,13 +60,13 @@
*/
typedef struct qfo_header_s {
int8_t qfo[4]; ///< identifier string (includes nul) (#QFO)
pr_int_t version; ///< QFO format version (#QFO_VERSION)
pr_int_t num_spaces;
pr_int_t num_relocs; ///< number of relocation records
pr_int_t num_defs; ///< number of def records
pr_int_t num_funcs; ///< number of function records
pr_int_t num_lines; ///< number of line records
pr_int_t num_loose_relocs; ///< number of loose relocation records
pr_uint_t version; ///< QFO format version (#QFO_VERSION)
pr_uint_t num_spaces;
pr_uint_t num_relocs; ///< number of relocation records
pr_uint_t num_defs; ///< number of def records
pr_uint_t num_funcs; ///< number of function records
pr_uint_t num_lines; ///< number of line records
pr_uint_t num_loose_relocs; ///< number of loose relocation records
///< (included in num_relocs)
} qfo_header_t;