From e1a7721fe04ace25388a3438a0d943bb183245bc Mon Sep 17 00:00:00 2001 From: midipix Date: Thu, 9 Aug 2018 05:56:15 -0400 Subject: front-end utility: pe_main(): remove the redundant argc parameter. --- src/driver/pe_amain.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/driver/pe_amain.c') diff --git a/src/driver/pe_amain.c b/src/driver/pe_amain.c index 585d50a..50d18ac 100644 --- a/src/driver/pe_amain.c +++ b/src/driver/pe_amain.c @@ -83,7 +83,7 @@ static int pe_exit(struct pe_driver_ctx * dctx, int ret) return ret; } -int pe_main(int argc, char ** argv, char ** envp, const struct pe_fd_ctx * fdctx) +int pe_main(char ** argv, char ** envp, const struct pe_fd_ctx * fdctx) { int ret; int fdout; @@ -97,7 +97,7 @@ int pe_main(int argc, char ** argv, char ** envp, const struct pe_fd_ctx * fdctx if ((ret = pe_get_driver_ctx(argv,envp,flags,fdctx,&dctx))) return (ret == PERK_USAGE) - ? !--argc + ? !argv || !argv[0] || !argv[1] : PERK_ERROR; if (dctx->cctx->drvflags & PERK_DRIVER_VERSION) -- cgit v1.2.3