[PATCH] argparse: fix parser callback type name
David Marchand
david.marchand at redhat.com
Thu Mar 7 17:14:02 CET 2024
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. */
--
2.44.0
More information about the dev
mailing list