]> sourceware.org Git - lvm2.git/commitdiff
Add few const modifiers.
authorzkabelac <zkabelac>
Thu, 7 Jan 2010 14:47:57 +0000 (14:47 +0000)
committerzkabelac <zkabelac>
Thu, 7 Jan 2010 14:47:57 +0000 (14:47 +0000)
lib/format_text/flags.c

index ec87aacedd7fb070b7f5332194afe65f13fc3d17..86b0c27e866ca76cc55db64aeb9e94c8c2b4458f 100644 (file)
@@ -28,7 +28,7 @@ struct flag {
        int kind;
 };
 
-static struct flag _vg_flags[] = {
+static const struct flag _vg_flags[] = {
        {EXPORTED_VG, "EXPORTED", STATUS_FLAG},
        {RESIZEABLE_VG, "RESIZEABLE", STATUS_FLAG},
        {PVMOVE, "PVMOVE", STATUS_FLAG},
@@ -41,14 +41,14 @@ static struct flag _vg_flags[] = {
        {0, NULL, 0}
 };
 
-static struct flag _pv_flags[] = {
+static const struct flag _pv_flags[] = {
        {ALLOCATABLE_PV, "ALLOCATABLE", STATUS_FLAG},
        {EXPORTED_VG, "EXPORTED", STATUS_FLAG},
        {MISSING_PV, "MISSING", COMPATIBLE_FLAG},
        {0, NULL, 0}
 };
 
-static struct flag _lv_flags[] = {
+static const struct flag _lv_flags[] = {
        {LVM_READ, "READ", STATUS_FLAG},
        {LVM_WRITE, "WRITE", STATUS_FLAG},
        {FIXED_MINOR, "FIXED_MINOR", STATUS_FLAG},
@@ -69,7 +69,7 @@ static struct flag _lv_flags[] = {
        {0, NULL, 0}
 };
 
-static struct flag *_get_flags(int type)
+static const struct flag *_get_flags(int type)
 {
        switch (type & ~STATUS_FLAG) {
        case VG_FLAGS:
@@ -94,7 +94,7 @@ static struct flag *_get_flags(int type)
 int print_flags(uint64_t status, int type, char *buffer, size_t size)
 {
        int f, first = 1;
-       struct flag *flags;
+       const struct flag *flags;
 
        if (!(flags = _get_flags(type)))
                return_0;
@@ -139,7 +139,7 @@ int read_flags(uint64_t *status, int type, struct config_value *cv)
 {
        int f;
        uint64_t s = UINT64_C(0);
-       struct flag *flags;
+       const struct flag *flags;
 
        if (!(flags = _get_flags(type)))
                return_0;
This page took 0.043166 seconds and 5 git commands to generate.