From fad23f9ed823120339761ffd251f2b1b2c3b2e45 Mon Sep 17 00:00:00 2001 From: midipix Date: Sat, 19 Nov 2016 14:49:53 -0500 Subject: PE format: union pe_opt_hdr [and friends] --> union pe_raw_opt_hdr. --- src/headers/pe_get_image_section_tbl_addr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/headers/pe_get_image_section_tbl_addr.c') diff --git a/src/headers/pe_get_image_section_tbl_addr.c b/src/headers/pe_get_image_section_tbl_addr.c index 52e24d0..bbab5a2 100644 --- a/src/headers/pe_get_image_section_tbl_addr.c +++ b/src/headers/pe_get_image_section_tbl_addr.c @@ -14,7 +14,7 @@ pe_api struct pe_sec_hdr * pe_get_image_section_tbl_addr (const void * base) { struct pe_raw_coff_file_hdr * coff; - union pe_opt_hdr * opt; + union pe_raw_opt_hdr * opt; if (!(coff = pe_get_image_coff_hdr_addr(base))) return 0; -- cgit v1.2.3