X-Git-Url: http://git.efficios.com/?p=argpar.git;a=blobdiff_plain;f=argpar%2Fargpar.c;h=f324d7fb130355a42ef07583cfcd520f09f2e324;hp=5a8a302de8d063dc7ef6426f2be1eb4dfca39793;hb=f3ab5ca1c03d5ae622ac53b7c1da30ebd21db199;hpb=2af370d0a1dd610f66232e2bacc75e4b40ffca0d;ds=inline diff --git a/argpar/argpar.c b/argpar/argpar.c index 5a8a302..f324d7f 100644 --- a/argpar/argpar.c +++ b/argpar/argpar.c @@ -766,7 +766,7 @@ end: } ARGPAR_HIDDEN -unsigned int argpar_iter_get_ingested_orig_args( +unsigned int argpar_iter_ingested_orig_args( const struct argpar_iter * const iter) { return iter->i; @@ -809,7 +809,7 @@ struct argpar_parse_ret argpar_parse(const unsigned int argc, case ARGPAR_ITER_NEXT_STATUS_ERROR_UNKNOWN_OPT: if (fail_on_unknown_opt) { parse_ret.ingested_orig_args = - argpar_iter_get_ingested_orig_args(iter); + argpar_iter_ingested_orig_args(iter); goto error; } @@ -832,7 +832,7 @@ struct argpar_parse_ret argpar_parse(const unsigned int argc, success: ARGPAR_ASSERT(!parse_ret.error); - parse_ret.ingested_orig_args = argpar_iter_get_ingested_orig_args(iter); + parse_ret.ingested_orig_args = argpar_iter_ingested_orig_args(iter); goto end; error: