summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2017-12-13 11:17:58 -0500
committermidipix <writeonce@midipix.org>2017-12-13 11:24:15 -0500
commit2111da6c6b5a906d2e9a821b3d6733684b7378eb (patch)
tree30819e5c135d015d09d3caf033fcce6ee04cde3a /include
parentf0d194ac855c0d447702c14440f9a5b8e28de38f (diff)
downloadperk-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.h6
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 {