diff --git a/ChangeLog b/ChangeLog index 9485dec3c..265bbaa51 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2009-11-09 Robert Millan + + * include/grub/list.h (struct grub_named_list): Remove `const' + qualifier from `name'. + (struct grub_prio_list): Likewise. + 2009-11-09 Robert Millan * normal/auth.c: Include `'. diff --git a/include/grub/list.h b/include/grub/list.h index 6e034928a..2dffdc08d 100644 --- a/include/grub/list.h +++ b/include/grub/list.h @@ -68,7 +68,7 @@ extern void* grub_assert_fail (void); struct grub_named_list { struct grub_named_list *next; - const char *name; + char *name; }; typedef struct grub_named_list *grub_named_list_t; @@ -91,7 +91,7 @@ void * EXPORT_FUNC(grub_named_list_find) (grub_named_list_t head, struct grub_prio_list { struct grub_prio_list *next; - const char *name; + char *name; int prio; }; typedef struct grub_prio_list *grub_prio_list_t;