From f319a61e9c374bd3277deba90216f67fdcb505e9 Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Mon, 29 Apr 2013 12:38:56 +0200 Subject: [PATCH] config: fix bitfield for section Since the cfg_def_type_t is used as bitfield in some tests, use bitshifting to create valid bit sequence. (in release fix) --- lib/config/config.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/config/config.h b/lib/config/config.h index 7e40420d0..155d69a0b 100644 --- a/lib/config/config.h +++ b/lib/config/config.h @@ -34,12 +34,12 @@ struct cmd_context; /* configuration definition item type (for item's accepted types) */ typedef enum { - CFG_TYPE_SECTION = 0, /* section */ - CFG_TYPE_ARRAY = 1, /* setting */ - CFG_TYPE_BOOL = 2, /* setting */ - CFG_TYPE_INT = 4, /* setting */ - CFG_TYPE_FLOAT = 8, /* setting */ - CFG_TYPE_STRING = 16 /* setting */ + CFG_TYPE_SECTION = 1 << 0, /* section */ + CFG_TYPE_ARRAY = 1 << 1, /* setting */ + CFG_TYPE_BOOL = 1 << 2, /* setting */ + CFG_TYPE_INT = 1 << 3, /* setting */ + CFG_TYPE_FLOAT = 1 << 4, /* setting */ + CFG_TYPE_STRING = 1 << 5, /* setting */ } cfg_def_type_t; /* configuration definition item value (for item's default value) */ -- 2.43.5