summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-12-02 17:19:47 -0500
committermidipix <writeonce@midipix.org>2016-12-02 17:19:47 -0500
commit94ea9e1c41db362a313fb24603e5def231ddb252 (patch)
tree3db38e0ddd5191eaed907dc73af2d7c8c33835f0 /include
parentafb44902287357c4e9084d707efdc8080a782b32 (diff)
downloadpemagine-94ea9e1c41db362a313fb24603e5def231ddb252.tar.bz2
pemagine-94ea9e1c41db362a313fb24603e5def231ddb252.tar.xz
struct pe_raw_coff_symbol_name: member name normalization.
Diffstat (limited to 'include')
-rw-r--r--include/pemagine/pe_structs.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/pemagine/pe_structs.h b/include/pemagine/pe_structs.h
index 5af46e8..27a9b6b 100644
--- a/include/pemagine/pe_structs.h
+++ b/include/pemagine/pe_structs.h
@@ -298,11 +298,11 @@ struct pe_raw_coff_symbol {
struct pe_raw_coff_symbol_name {
union {
- unsigned char short_name [0x08]; /* 0x00 */
+ unsigned char cs_short_name [0x08]; /* 0x00 */
struct {
- unsigned char zeroes [0x04]; /* 0x00 */
- unsigned char offset [0x04]; /* 0x04 */
+ unsigned char cs_zeroes [0x04]; /* 0x00 */
+ unsigned char cs_offset [0x04]; /* 0x04 */
} long_name;
};
};