Copyright ownership transfer
[lttng-tools.git] / src / bin / lttng-crash / lttng-crash.c
index 7f1f52803f9f5c5102ebcdbc5b8f5cd1281fa3d0..afb490c2c6ce38f90bb9f4238cde6e3a97dee0f6 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011 David Goulet <david.goulet@polymtl.ca>
+ * Copyright (C) 2011 EfficiOS Inc.
  * Copyright (C) 2014 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
  *
  * SPDX-License-Identifier: GPL-2.0-only
@@ -183,7 +183,7 @@ static const char *progname;
 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;
 
@@ -300,7 +300,7 @@ static int parse_args(int argc, char **argv)
                goto error;
        }
 
-       input_path = argv[optind];
+       the_input_path = argv[optind];
 end:
        return ret;
 
@@ -1244,7 +1244,7 @@ int main(int argc, char *argv[])
                }
        }
 
-       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;
This page took 0.024697 seconds and 4 git commands to generate.