2009-11-09 Robert Millan <rmh.grub@aybabtu.com>
Misc cleanup. * kern/command.c (grub_register_command_prio): Use grub_zalloc() instead of explicitly zeroing data. * kern/list.c: Include `<grub/mm.h>'. (grub_named_list_find): Replace `0' with `NULL'. * normal/autofs.c (struct grub_fs_module_list): Remove ad-hoc type. (fs_module_list): Change type to `grub_named_list_t'. Update all users. * normal/dyncmd.c (read_command_list): Add space between function call and parenthesis. * normal/handler.c (read_handler_list): Likewise.
This commit is contained in:
parent
4089b167cd
commit
ac451143b2
6 changed files with 24 additions and 16 deletions
|
@ -19,6 +19,7 @@
|
|||
|
||||
#include <grub/list.h>
|
||||
#include <grub/misc.h>
|
||||
#include <grub/mm.h>
|
||||
|
||||
void
|
||||
grub_list_push (grub_list_t *head, grub_list_t item)
|
||||
|
@ -81,7 +82,7 @@ grub_list_insert (grub_list_t *head, grub_list_t item,
|
|||
void *
|
||||
grub_named_list_find (grub_named_list_t head, const char *name)
|
||||
{
|
||||
grub_named_list_t result = 0;
|
||||
grub_named_list_t result = NULL;
|
||||
|
||||
auto int list_find (grub_named_list_t item);
|
||||
int list_find (grub_named_list_t item)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue