summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-11-26 00:58:50 -0500
committermidipix <writeonce@midipix.org>2016-11-26 00:58:50 -0500
commitdab371bd24cd2ee34c5bae2f6c479e8f0c8b1784 (patch)
tree2fe53075b30f0a0eda4f81778c1bc32fdcaa4335 /src
parent75fd9086b99b5406c19061b49385fb38ddf67a9d (diff)
downloadsofort-dab371bd24cd2ee34c5bae2f6c479e8f0c8b1784.tar.bz2
sofort-dab371bd24cd2ee34c5bae2f6c479e8f0c8b1784.tar.xz
argv.h: error code path: remove unneeded if statement (always true).
Diffstat (limited to 'src')
-rw-r--r--src/internal/argv/argv.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/internal/argv/argv.h b/src/internal/argv/argv.h
index 7604c45..848e0af 100644
--- a/src/internal/argv/argv.h
+++ b/src/internal/argv/argv.h
@@ -692,8 +692,7 @@ static struct argv_meta * argv_get(
argv_scan(argv,options,&ctx,0);
if (ctx.errcode != ARGV_ERROR_OK) {
- if (!ctx.program)
- ctx.program = argv_program_name(argv[0]);
+ ctx.program = argv_program_name(argv[0]);
if (ctx.flags & ARGV_VERBOSITY_ERRORS)
argv_show_error(&ctx);
@@ -708,9 +707,7 @@ static struct argv_meta * argv_get(
argv_scan(meta->argv,options,&ctx,meta);
if (ctx.errcode != ARGV_ERROR_OK) {
- if (!ctx.program)
- ctx.program = argv[0];
-
+ ctx.program = argv[0];
ctx.errcode = ARGV_ERROR_INTERNAL;
argv_show_error(&ctx);
argv_free(meta);