diff options
author | midipix <writeonce@midipix.org> | 2017-12-13 11:17:58 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2017-12-13 11:24:15 -0500 |
commit | 2111da6c6b5a906d2e9a821b3d6733684b7378eb (patch) | |
tree | 30819e5c135d015d09d3caf033fcce6ee04cde3a /include | |
parent | f0d194ac855c0d447702c14440f9a5b8e28de38f (diff) | |
download | perk-2111da6c6b5a906d2e9a821b3d6733684b7378eb.tar.bz2 perk-2111da6c6b5a906d2e9a821b3d6733684b7378eb.tar.xz |
refactor: struct pe_meta_stats: members are now t-prefixed.
Diffstat (limited to 'include')
-rw-r--r-- | include/perk/perk.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/perk/perk.h b/include/perk/perk.h index b51b641..d667413 100644 --- a/include/perk/perk.h +++ b/include/perk/perk.h @@ -77,9 +77,9 @@ struct pe_expsym { }; struct pe_meta_stats { - int32_t nexpsyms; - int32_t nimplibs; - int32_t nrelocs; + int32_t t_nexpsyms; + int32_t t_nimplibs; + int32_t t_nrelocs; }; struct pe_image_meta { |