.gitignore: ignore local vscode workspace settings file
[lttng-tools.git] / src / bin / lttng / commands / status.cpp
index a77830ece028d002ba0cf97ac30019ff585d7267..82a26c5b2752c026fde647eb8184e65d3a4c6604 100644 (file)
@@ -6,6 +6,10 @@
  */
 
 #define _LGPL_SOURCE
+#include "../command.hpp"
+#include "../utils.hpp"
+
+#include <config.h>
 #include <popt.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <sys/types.h>
 #include <unistd.h>
 
-#include "../command.hpp"
-#include "../utils.hpp"
-#include <config.h>
-
 #ifdef LTTNG_EMBED_HELP
 static const char help_msg[] =
 #include <lttng-status.1.h>
-;
+       ;
 #endif
 
 enum {
@@ -31,16 +31,16 @@ enum {
 
 static struct poptOption long_options[] = {
        /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
-       {"help",        'h', POPT_ARG_NONE, NULL, OPT_HELP, NULL, NULL},
-       {"list-options", 0,  POPT_ARG_NONE, NULL, OPT_LIST_OPTIONS, NULL, NULL},
-       {0, 0, 0, 0, 0, 0, 0}
+       { "help", 'h', POPT_ARG_NONE, nullptr, OPT_HELP, nullptr, nullptr },
+       { "list-options", 0, POPT_ARG_NONE, nullptr, OPT_LIST_OPTIONS, nullptr, nullptr },
+       { nullptr, 0, 0, nullptr, 0, nullptr, nullptr }
 };
 
-static int status(void)
+static int status()
 {
        const char *argv[2];
        int ret = CMD_SUCCESS;
-       char *session_name = NULL;
+       char *session_name = nullptr;
 
        session_name = get_session_name();
        if (!session_name) {
@@ -64,7 +64,7 @@ int cmd_status(int argc, const char **argv)
        int opt, ret = CMD_SUCCESS;
        static poptContext pc;
 
-       pc = poptGetContext(NULL, argc, argv, long_options, 0);
+       pc = poptGetContext(nullptr, argc, argv, long_options, 0);
        poptReadDefaultConfig(pc, 0);
 
        while ((opt = poptGetNextOpt(pc)) != -1) {
@@ -81,7 +81,7 @@ int cmd_status(int argc, const char **argv)
                }
        }
 
-       if (poptPeekArg(pc) != NULL) {
+       if (poptPeekArg(pc) != nullptr) {
                ERR("This command does not accept positional arguments.\n");
                ret = CMD_UNDEFINED;
                goto end;
This page took 0.024028 seconds and 4 git commands to generate.