diff options
author | midipix <writeonce@midipix.org> | 2016-11-15 12:27:42 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-11-15 12:27:42 -0500 |
commit | 204e71196db007f92f76ac202a12b7a5b8309272 (patch) | |
tree | 4daccef03be637d83f3931bc31e7e4dc0a12856b /src/driver | |
parent | 44fcac1011352bf06f6019e2861aecfbe76adc36 (diff) | |
download | perk-204e71196db007f92f76ac202a12b7a5b8309272.tar.bz2 perk-204e71196db007f92f76ac202a12b7a5b8309272.tar.xz |
pe_output_image_category(): signature now matches that of other output api's.
Diffstat (limited to 'src/driver')
-rw-r--r-- | src/driver/pe_amain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/driver/pe_amain.c b/src/driver/pe_amain.c index 5b86432..40eaf9d 100644 --- a/src/driver/pe_amain.c +++ b/src/driver/pe_amain.c @@ -53,7 +53,7 @@ static void pe_perform_unit_actions( uint64_t flags = dctx->cctx->fmtflags; if (flags & PERK_OUTPUT_IMAGE_CATEGORY) - pe_output_image_category(dctx,uctx,0); + pe_output_image_category(dctx,uctx->meta,0); if (flags & PERK_OUTPUT_EXPORT_SYMS) pe_output_export_symbols(dctx,uctx->meta,0); |