From: Tokunori Ikegami Date: Fri, 22 Sep 2023 10:07:33 +0000 (+0900) Subject: fabrics: Fix NVMF_ARGS macro to use parameter n correctly X-Git-Tag: v2.6~11 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=0908a2d1691dbb28eb7cce773358c2baab1d49cb;p=users%2Fsagi%2Fnvme-cli.git fabrics: Fix NVMF_ARGS macro to use parameter n correctly Signed-off-by: Tokunori Ikegami --- diff --git a/fabrics.c b/fabrics.c index 605a8190..57ca927f 100644 --- a/fabrics.c +++ b/fabrics.c @@ -88,7 +88,7 @@ static const char *nvmf_config_file = "Use specified JSON configuration file or static const char *nvmf_context = "execution context identification string"; #define NVMF_ARGS(n, c, ...) \ - struct argconfig_commandline_options opts[] = { \ + struct argconfig_commandline_options n[] = { \ OPT_STRING("transport", 't', "STR", &transport, nvmf_tport), \ OPT_STRING("nqn", 'n', "STR", &subsysnqn, nvmf_nqn), \ OPT_STRING("traddr", 'a', "STR", &traddr, nvmf_traddr), \