From 4c74951a8c96cfc6d1169ebc45c19a508286350d Mon Sep 17 00:00:00 2001 From: Guido Cella Date: Sun, 8 Dec 2024 14:23:40 +0100 Subject: [PATCH] m_option: give M_OPT_NOCFG a value different from M_OPT_TYPE_USES_RANGE --- options/m_option.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/options/m_option.h b/options/m_option.h index cb40e029dcc01..eab3b5f0cf755 100644 --- a/options/m_option.h +++ b/options/m_option.h @@ -424,7 +424,7 @@ struct m_option { char *format_file_size(int64_t size); // The option is forbidden in config files. -#define M_OPT_NOCFG (UINT64_C(1) << 2) +#define M_OPT_NOCFG (UINT64_C(1) << 3) // The option should be set during command line pre-parsing #define M_OPT_PRE_PARSE (UINT64_C(1) << 4)