summaryrefslogtreecommitdiffhomepage
path: root/src/headers/pe_get_image_coff_hdr_addr.c
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-11-19 14:44:25 -0500
committermidipix <writeonce@midipix.org>2016-11-19 14:44:25 -0500
commitde5b3010350adbf3c5b9ceb12ddc0a2658a0f5ac (patch)
tree05dc766ecb9a740d02fec195d7f2416659ea886e /src/headers/pe_get_image_coff_hdr_addr.c
parent70b202ce6334016bfd90be0dd7ee28b9a2262946 (diff)
downloadpemagine-de5b3010350adbf3c5b9ceb12ddc0a2658a0f5ac.tar.bz2
pemagine-de5b3010350adbf3c5b9ceb12ddc0a2658a0f5ac.tar.xz
PE format: struct pe_image_dos_hdr --> struct pe_raw_image_dos_hdr.
Diffstat (limited to 'src/headers/pe_get_image_coff_hdr_addr.c')
-rw-r--r--src/headers/pe_get_image_coff_hdr_addr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/headers/pe_get_image_coff_hdr_addr.c b/src/headers/pe_get_image_coff_hdr_addr.c
index d2ff03a..6951095 100644
--- a/src/headers/pe_get_image_coff_hdr_addr.c
+++ b/src/headers/pe_get_image_coff_hdr_addr.c
@@ -12,7 +12,7 @@
pe_api
struct pe_coff_file_hdr * pe_get_image_coff_hdr_addr(const void * base)
{
- struct pe_image_dos_hdr * dos;
+ struct pe_raw_image_dos_hdr * dos;
struct pe_coff_file_hdr * coff;
uint32_t * offset;