clang-tidy: add Chrome-inspired checks
[lttng-tools.git] / tests / utils / testapp / gen-ust-events-ns / gen-ust-events-ns.cpp
index 8a3014ea655e85204565eb0733ec986d55f78c7d..c6b40f53dd2daaa01616718acccd5f0b3941c545 100644 (file)
 
 static int nr_iter = 100;
 static int debug = 0;
-static char *ns_opt = NULL;
-static char *after_unshare_file_path = NULL;
-static char *before_second_event_file_path = NULL;
+static char *ns_opt = nullptr;
+static char *after_unshare_file_path = nullptr;
+static char *before_second_event_file_path = nullptr;
 
 static struct poptOption opts[] = {
        /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
-       { "debug", 'd', POPT_ARG_NONE, &debug, 0, "Enable debug output", NULL },
-       { "ns", 'n', POPT_ARG_STRING, &ns_opt, 0, "Namespace short identifier", NULL },
-       { "iter", 'i', POPT_ARG_INT, &nr_iter, 0, "Number of tracepoint iterations", NULL },
+       { "debug", 'd', POPT_ARG_NONE, &debug, 0, "Enable debug output", nullptr },
+       { "ns", 'n', POPT_ARG_STRING, &ns_opt, 0, "Namespace short identifier", nullptr },
+       { "iter", 'i', POPT_ARG_INT, &nr_iter, 0, "Number of tracepoint iterations", nullptr },
        { "after",
          'a',
          POPT_ARG_STRING,
          &after_unshare_file_path,
          0,
          "after_unshare_file_path,",
-         NULL },
+         nullptr },
        { "before",
          'b',
          POPT_ARG_STRING,
          &before_second_event_file_path,
          0,
          "before_second_event_file_path,",
-         NULL },
-       POPT_AUTOHELP{ NULL, 0, 0, NULL, 0 }
+         nullptr },
+       POPT_AUTOHELP{ nullptr, 0, 0, nullptr, 0 }
 };
 
 static ATTR_FORMAT_PRINTF(1, 2) void debug_printf(const char *format, ...)
@@ -207,7 +207,7 @@ int main(int argc, const char **argv)
        int ret = EXIT_SUCCESS;
        poptContext pc;
 
-       pc = poptGetContext(NULL, argc, argv, opts, 0);
+       pc = poptGetContext(nullptr, argc, argv, opts, 0);
        poptReadDefaultConfig(pc, 0);
 
        if (argc < 2) {
@@ -236,7 +236,7 @@ int main(int argc, const char **argv)
                goto end;
        }
 
-       if (ns_opt == NULL) {
+       if (ns_opt == nullptr) {
                poptPrintUsage(pc, stderr, 0);
                ret = EXIT_FAILURE;
                goto end;
This page took 0.024096 seconds and 4 git commands to generate.