diff options
author | midipix <writeonce@midipix.org> | 2018-08-09 05:56:15 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-08-09 05:57:12 -0400 |
commit | e1a7721fe04ace25388a3438a0d943bb183245bc (patch) | |
tree | f4993798163a1e0396af553b42dcecddbe9aebc5 /include | |
parent | db3db23bbfa09ad13c5e1741c9f961b1ae98383a (diff) | |
download | perk-e1a7721fe04ace25388a3438a0d943bb183245bc.tar.bz2 perk-e1a7721fe04ace25388a3438a0d943bb183245bc.tar.xz |
front-end utility: pe_main(): remove the redundant argc parameter.
Diffstat (limited to 'include')
-rw-r--r-- | include/perk/perk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/perk/perk.h b/include/perk/perk.h index 2860c53..bc6ea8f 100644 --- a/include/perk/perk.h +++ b/include/perk/perk.h @@ -189,7 +189,7 @@ perk_api int pe_get_driver_fdctx (const struct pe_driver_ctx *, struct pe perk_api int pe_set_driver_fdctx (struct pe_driver_ctx *, const struct pe_fd_ctx *); /* utility api */ -perk_api int pe_main (int, char **, char **, const struct pe_fd_ctx *); +perk_api int pe_main (char **, char **, const struct pe_fd_ctx *); perk_api int pe_output_image_category (const struct pe_driver_ctx *, const struct pe_image_meta *); perk_api int pe_output_image_sections (const struct pe_driver_ctx *, const struct pe_image_meta *); |