From f9c42c96d6357a14a94bfc1cbaed2d24c5abdd14 Mon Sep 17 00:00:00 2001 From: Christoph Niethammer Date: Tue, 30 Jun 2020 21:45:48 +0200 Subject: [PATCH] Fix wrong enum type in default command line option category assignment Signed-off-by: Christoph Niethammer --- opal/util/cmd_line.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opal/util/cmd_line.c b/opal/util/cmd_line.c index ce901a66ff..39c5bf2c62 100644 --- a/opal/util/cmd_line.c +++ b/opal/util/cmd_line.c @@ -237,7 +237,7 @@ int opal_cmd_line_make_opt3(opal_cmd_line_t *cmd, char short_name, e.ocl_description = desc; - e.ocl_otype = OPAL_CMD_LINE_TYPE_NULL; + e.ocl_otype = OPAL_CMD_LINE_OTYPE_NULL; return make_opt(cmd, &e); }