diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/driver/pe_amain.c | 4 | ||||
-rw-r--r-- | src/driver/pe_driver_ctx.c | 4 | ||||
-rw-r--r-- | src/internal/perk_driver_impl.h | 2 | ||||
-rw-r--r-- | src/output/pe_output_image_category.c (renamed from src/output/pe_output_image_type.c) | 2 | ||||
-rw-r--r-- | src/skin/pe_skin_default.c | 2 |
5 files changed, 7 insertions, 7 deletions
diff --git a/src/driver/pe_amain.c b/src/driver/pe_amain.c index d23e9fe..3096561 100644 --- a/src/driver/pe_amain.c +++ b/src/driver/pe_amain.c @@ -62,8 +62,8 @@ static void pe_perform_unit_actions( int fpara = 0; uint64_t flags = dctx->cctx->fmtflags; - if (flags & PERK_OUTPUT_IMAGE_TYPE) - pe_output_image_type(dctx,uctx,0); + if (flags & PERK_OUTPUT_IMAGE_CATEGORY) + pe_output_image_category(dctx,uctx,0); if (flags & PERK_OUTPUT_EXPORT_SYMS) { pe_output_export_symbols(dctx,uctx->meta,0); diff --git a/src/driver/pe_driver_ctx.c b/src/driver/pe_driver_ctx.c index 8ca3ba6..32faa7d 100644 --- a/src/driver/pe_driver_ctx.c +++ b/src/driver/pe_driver_ctx.c @@ -160,8 +160,8 @@ int pe_get_driver_ctx( pretty = entry->arg; break; - case TAG_IMGTYPE: - cctx.fmtflags |= PERK_OUTPUT_IMAGE_TYPE; + case TAG_CATEGORY: + cctx.fmtflags |= PERK_OUTPUT_IMAGE_CATEGORY; break; case TAG_SECTIONS: diff --git a/src/internal/perk_driver_impl.h b/src/internal/perk_driver_impl.h index 5ca0bc3..f52e328 100644 --- a/src/internal/perk_driver_impl.h +++ b/src/internal/perk_driver_impl.h @@ -16,7 +16,7 @@ enum app_tags { TAG_VERSION, TAG_OUTPUT, TAG_PRETTY, - TAG_IMGTYPE, + TAG_CATEGORY, TAG_SECTIONS, TAG_EXPSYMS, TAG_IMPLIBS, diff --git a/src/output/pe_output_image_type.c b/src/output/pe_output_image_category.c index 3df5316..2550267 100644 --- a/src/output/pe_output_image_type.c +++ b/src/output/pe_output_image_category.c @@ -10,7 +10,7 @@ #include <perk/perk_output.h> #include "perk_errinfo_impl.h" -int pe_output_image_type( +int pe_output_image_category( const struct pe_driver_ctx * dctx, const struct pe_unit_ctx * uctx, FILE * fout) diff --git a/src/skin/pe_skin_default.c b/src/skin/pe_skin_default.c index 8bf40e1..baafc8a 100644 --- a/src/skin/pe_skin_default.c +++ b/src/skin/pe_skin_default.c @@ -14,7 +14,7 @@ const struct argv_option pe_default_options[] = { {"pretty", 'p',TAG_PRETTY,ARGV_OPTARG_REQUIRED,0,"yaml|dlltool",0, "format output for parsing by %s"}, - {"type", 't',TAG_IMGTYPE,ARGV_OPTARG_NONE,0,0,0, + {"category", 'c',TAG_CATEGORY,ARGV_OPTARG_NONE,0,0,0, "print image type"}, {"sections", 's',TAG_SECTIONS,ARGV_OPTARG_NONE,0,0,0, |