aboutsummaryrefslogtreecommitdiffstats
path: root/ui/cli/tap-expert.c
diff options
context:
space:
mode:
Diffstat (limited to 'ui/cli/tap-expert.c')
-rw-r--r--ui/cli/tap-expert.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/cli/tap-expert.c b/ui/cli/tap-expert.c
index 7bc79f266d..4047e25e82 100644
--- a/ui/cli/tap-expert.c
+++ b/ui/cli/tap-expert.c
@@ -190,7 +190,7 @@ expert_stat_draw(void *phs _U_)
}
/* Create a new expert stats struct */
-static void expert_stat_init(const char *optarg, void *userdata _U_)
+static void expert_stat_init(const char *opt_arg, void *userdata _U_)
{
const char *args = NULL;
const char *filter = NULL;
@@ -199,9 +199,9 @@ static void expert_stat_init(const char *optarg, void *userdata _U_)
int n;
/* Check for args. */
- if (strncmp(optarg, "expert", 6) == 0) {
+ if (strncmp(opt_arg, "expert", 6) == 0) {
/* Skip those characters */
- args = optarg + 6;
+ args = opt_arg + 6;
}
else {
/* No args. Will show all reports, with no filter */