diff options
author | midipix <writeonce@midipix.org> | 2025-06-07 16:41:21 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2025-06-07 16:42:43 +0000 |
commit | eace94e1a73bd239eda1fa83012a8526eee23559 (patch) | |
tree | f7066ed77c73196174e77ce9235d1c5dc752107f /src/internal/perk/perk_structs.h | |
parent | ab92f2a996e11abc4de8394b66b59fdc775ae2b7 (diff) | |
download | mdso-eace94e1a73bd239eda1fa83012a8526eee23559.tar.bz2 mdso-eace94e1a73bd239eda1fa83012a8526eee23559.tar.xz |
struct pe_raw_coff_object_hdr: rename .cfh_num_of_syms to reflect content.
Diffstat (limited to 'src/internal/perk/perk_structs.h')
-rw-r--r-- | src/internal/perk/perk_structs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/internal/perk/perk_structs.h b/src/internal/perk/perk_structs.h index 18b52a9..b576ee8 100644 --- a/src/internal/perk/perk_structs.h +++ b/src/internal/perk/perk_structs.h @@ -45,7 +45,7 @@ struct pe_raw_coff_object_hdr { unsigned char cfh_num_of_sections [0x02]; /* 0x02 */ unsigned char cfh_time_date_stamp [0x04]; /* 0x04 */ unsigned char cfh_ptr_to_sym_tbl [0x04]; /* 0x08 */ - unsigned char cfh_num_of_syms [0x04]; /* 0x0c */ + unsigned char cfh_num_of_sym_recs [0x04]; /* 0x0c */ unsigned char cfh_size_of_opt_hdr [0x02]; /* 0x10 */ unsigned char cfh_characteristics [0x02]; /* 0x12 */ }; |