From 0908a2d1691dbb28eb7cce773358c2baab1d49cb Mon Sep 17 00:00:00 2001 From: Tokunori Ikegami Date: Fri, 22 Sep 2023 19:07:33 +0900 Subject: [PATCH] fabrics: Fix NVMF_ARGS macro to use parameter n correctly Signed-off-by: Tokunori Ikegami --- fabrics.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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), \ -- 2.50.1