]> sourceware.org Git - lvm2.git/commitdiff
Preserve const for char pointer
authorZdenek Kabelac <zkabelac@redhat.com>
Thu, 11 Nov 2010 12:32:33 +0000 (12:32 +0000)
committerZdenek Kabelac <zkabelac@redhat.com>
Thu, 11 Nov 2010 12:32:33 +0000 (12:32 +0000)
Keep char pointers 'const'  (introduced with cling commit).

lib/datastruct/str_list.c
lib/datastruct/str_list.h
lib/metadata/lv_manip.c

index b7101489994bb3fbf9e37604557ef93a0e539a69..81575cb9298915870c5a0afc3e24c45cafa4425e 100644 (file)
@@ -95,7 +95,7 @@ int str_list_match_item(const struct dm_list *sll, const char *str)
  * Is at least one item on both lists?
  * If tag_matched is non-NULL, it is set to the tag that matched.
  */
-int str_list_match_list(const struct dm_list *sll, const struct dm_list *sll2, char **tag_matched)
+int str_list_match_list(const struct dm_list *sll, const struct dm_list *sll2, const char **tag_matched)
 {
        struct str_list *sl;
 
index e145bfed2f19f3e41cf5558880a5221c3732fddd..f7180e21fe8214746cb5e884b31464935513e648 100644 (file)
@@ -20,7 +20,7 @@ struct dm_list *str_list_create(struct dm_pool *mem);
 int str_list_add(struct dm_pool *mem, struct dm_list *sll, const char *str);
 int str_list_del(struct dm_list *sll, const char *str);
 int str_list_match_item(const struct dm_list *sll, const char *str);
-int str_list_match_list(const struct dm_list *sll, const struct dm_list *sll2, char **tag_matched);
+int str_list_match_list(const struct dm_list *sll, const struct dm_list *sll2, const char **tag_matched);
 int str_list_lists_equal(const struct dm_list *sll, const struct dm_list *sll2);
 int str_list_dup(struct dm_pool *mem, struct dm_list *sllnew,
                 const struct dm_list *sllold);
index 1888b7c5d0798eb3f0c39c0886d0caa574216c66..2d5e08f27aae4bd808ea0efd2f5266d388f82e3b 100644 (file)
@@ -959,7 +959,7 @@ static int _has_matching_pv_tag(struct pv_match *pvmatch, struct pv_segment *pvs
 {
        struct config_value *cv;
        char *str;
-       char *tag_matched;
+       const char *tag_matched;
 
        for (cv = pvmatch->cling_tag_list_cn->v; cv; cv = cv->next) {
                if (cv->type != CFG_STRING) {
This page took 0.043598 seconds and 5 git commands to generate.