X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=lttng%2Fcommands%2Fcalibrate.c;h=1219685e7515ab8ca5541c3c8f9222a53c6e602d;hp=6979ef6eaa0c765852b938abd779d2c1edbe2397;hb=5edd7e09e892604b00ca937c0f1bc887bb5a842c;hpb=eeac7d463a09ac924c3c98f1fa5fa6c19748b4de diff --git a/lttng/commands/calibrate.c b/lttng/commands/calibrate.c index 6979ef6ea..1219685e7 100644 --- a/lttng/commands/calibrate.c +++ b/lttng/commands/calibrate.c @@ -56,7 +56,7 @@ static struct poptOption long_options[] = { /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */ {"help", 'h', POPT_ARG_NONE, 0, OPT_HELP, 0, 0}, {"kernel", 'k', POPT_ARG_VAL, &opt_kernel, 1, 0, 0}, - {"userspace", 'u', POPT_ARG_STRING | POPT_ARGFLAG_OPTIONAL, 0, OPT_USERSPACE, 0, 0}, + {"userspace", 'u', POPT_ARG_STRING | POPT_ARGFLAG_OPTIONAL, &opt_cmd_name, OPT_USERSPACE, 0, 0}, {"all", 0, POPT_ARG_VAL, &opt_pid_all, 1, 0, 0}, {"pid", 'p', POPT_ARG_INT, &opt_pid, 0, 0, 0}, {"tracepoint", 0, POPT_ARG_NONE, 0, OPT_TRACEPOINT, 0, 0}, @@ -201,7 +201,6 @@ int cmd_calibrate(int argc, const char **argv) break; case OPT_USERSPACE: opt_userspace = 1; - opt_cmd_name = poptGetOptArg(pc); break; default: usage(stderr);