[PATCH] argparse: fix parser callback type name
fengchengwen
fengchengwen at huawei.com
Fri Mar 8 01:49:04 CET 2024
Acked-by: Chengwen Feng <fengchengwen at huawei.com>
On 2024/3/8 0:14, David Marchand wrote:
> All types exposed in a public header must be prefixed with rte_.
>
> Fixes: e3e579f5bab5 ("argparse: introduce argparse library")
>
> Signed-off-by: David Marchand <david.marchand at redhat.com>
> ---
> lib/argparse/rte_argparse.h | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/lib/argparse/rte_argparse.h b/lib/argparse/rte_argparse.h
> index 47e231bef9..5e5936f96c 100644
> --- a/lib/argparse/rte_argparse.h
> +++ b/lib/argparse/rte_argparse.h
> @@ -144,7 +144,7 @@ struct rte_argparse_arg {
> * @return
> * 0 on success. Otherwise negative value is returned.
> */
> -typedef int (*arg_parser_t)(uint32_t index, const char *value, void *opaque);
> +typedef int (*rte_arg_parser_t)(uint32_t index, const char *value, void *opaque);
>
> /**
> * A structure used to hold argparse's configuration.
> @@ -161,7 +161,7 @@ struct rte_argparse {
> /** Whether exit when error. */
> bool exit_on_error;
> /** User callback for parsing arguments. */
> - arg_parser_t callback;
> + rte_arg_parser_t callback;
> /** Opaque which used to invoke callback. */
> void *opaque;
> /** Reserved field used for future extension. */
>
More information about the dev
mailing list