... to avoid clashing with a function parameter name.
Change-Id: I96ca04576b4cc18adff7e5e19483d4fb74a7c669
Signed-off-by: Simon Marchi <simon.marchi@efficios.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
static char *opt_viewer_path = NULL;
static char *opt_output_path = NULL;
-static char *input_path;
+static char *the_input_path;
int lttng_opt_quiet, lttng_opt_verbose, lttng_opt_mi;
goto error;
}
- input_path = argv[optind];
+ the_input_path = argv[optind];
end:
return ret;
}
}
- ret = extract_trace_recursive(output_path, input_path);
+ ret = extract_trace_recursive(output_path, the_input_path);
if (ret < 0) {
has_warning = true;
goto end;