From: Keith Busch Date: Thu, 30 Nov 2017 22:48:07 +0000 (-0700) Subject: Improve code alignment on intel plugin X-Git-Tag: v1.5~17 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=21f3fe8ab2363229208825fd2ddd8d9a60e92e4d;p=users%2Fsagi%2Fnvme-cli.git Improve code alignment on intel plugin Signed-off-by: Keith Busch --- diff --git a/intel-nvme.c b/intel-nvme.c index a2d12d91..375b7a37 100644 --- a/intel-nvme.c +++ b/intel-nvme.c @@ -650,7 +650,7 @@ static int get_internal_log(int argc, char **argv, struct command *command, stru char *core = "Select which region log should come from. -1 for all"; char *nlognum = "Select which nlog to read. -1 for all nlogs"; char *file = "Output file; defaults to device name provided"; - char *verb = "To print out verbose nlog info"; + char *verbose = "To print out verbose nlog info"; const char *namespace_id = "Namespace to get logs from"; struct config { @@ -671,11 +671,11 @@ static int get_internal_log(int argc, char **argv, struct command *command, stru const struct argconfig_commandline_options command_line_options[] = { {"log", 'l', "NUM", CFG_POSITIVE, &cfg.log, required_argument, log}, - {"region", 'r', "NUM", CFG_INT, &cfg.core, required_argument, core}, - {"nlognum", 'm', "NUM", CFG_INT, &cfg.lnum, required_argument, nlognum}, + {"region", 'r', "NUM", CFG_INT, &cfg.core, required_argument, core}, + {"nlognum", 'm', "NUM", CFG_INT, &cfg.lnum, required_argument, nlognum}, {"namespace-id", 'n', "NUM", CFG_POSITIVE, &cfg.namespace_id, required_argument, namespace_id}, {"output-file", 'o', "FILE", CFG_STRING, &cfg.file, required_argument, file}, - {"verbose_nlog", 'v', "" , CFG_NONE, &cfg.verbose, no_argument, verb}, + {"verbose_nlog", 'v', "" , CFG_NONE, &cfg.verbose, no_argument, verbose}, {NULL} };