1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-02 01:18:26 +03:00

cleanup: use unsigned 1bit elements

Avoid using signed 'int' type for 1 bit size.
This commit is contained in:
Zdenek Kabelac 2014-08-21 15:37:39 +02:00
parent e5356eeba1
commit 3b5afac9b4

View File

@ -139,10 +139,10 @@ struct config_def_tree_spec {
struct cmd_context *cmd; /* command context (for run-time defaults */ struct cmd_context *cmd; /* command context (for run-time defaults */
cfg_def_tree_t type; /* tree type */ cfg_def_tree_t type; /* tree type */
uint16_t version; /* tree at this LVM2 version */ uint16_t version; /* tree at this LVM2 version */
int ignoreadvanced:1; /* do not include advanced configs */ unsigned ignoreadvanced:1; /* do not include advanced configs */
int ignoreunsupported:1; /* do not include unsupported configs */ unsigned ignoreunsupported:1; /* do not include unsupported configs */
int withcomments:1; /* include comments */ unsigned withcomments:1; /* include comments */
int withversions:1; /* include versions */ unsigned withversions:1; /* include versions */
uint8_t *check_status; /* status of last tree check (currently needed for CFG_DEF_TREE_MISSING only) */ uint8_t *check_status; /* status of last tree check (currently needed for CFG_DEF_TREE_MISSING only) */
}; };