summaryrefslogtreecommitdiffhomepage
path: root/src/perk.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/perk.c')
-rw-r--r--src/perk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/perk.c b/src/perk.c
index 993478c..00a44b1 100644
--- a/src/perk.c
+++ b/src/perk.c
@@ -43,14 +43,14 @@ static void perk_perform_unit_actions(struct pe_unit_ctx * uctx)
if (flags & PERK_OUTPUT_EXPORT_SYMS) {
uctx->status = pe_output_export_symbols(uctx->meta,uctx->cctx,0);
uctx->nerrors += !!uctx->status;
- fpara += uctx->meta->summary.num_of_export_syms;
+ fpara += uctx->meta->summary.nexpsyms;
}
if ((flags & PERK_OUTPUT_IMPORT_LIBS) || (flags & PERK_OUTPUT_IMPORT_SYMS)) {
perk_paragraph_break(uctx,&fpara);
uctx->status = pe_output_import_libraries(uctx->meta,uctx->cctx,0);
uctx->nerrors += !!uctx->status;
- fpara += (uctx->meta->summary.num_of_implibs > 0);
+ fpara += (uctx->meta->summary.nimplibs > 0);
}
}