summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/perk/perk_meta.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/perk/perk_meta.h b/include/perk/perk_meta.h
index f5f162f..5a4136f 100644
--- a/include/perk/perk_meta.h
+++ b/include/perk/perk_meta.h
@@ -182,8 +182,7 @@ struct pe_meta_opt_hdr {
/* section header */
struct pe_meta_sec_hdr {
- char sh_name[16];
- char * sh_long_name;
+ char * sh_name;
uint32_t sh_virtual_size;
uint32_t sh_virtual_addr;
uint32_t sh_size_of_raw_data;
@@ -193,6 +192,7 @@ struct pe_meta_sec_hdr {
uint16_t sh_num_of_relocs;
uint16_t sh_num_of_line_nums;
uint32_t sh_characteristics;
+ char sh_name_buf[16];
};