* util/grub-mkdevicemap.c (make_device_map): Add missing
NESTED_FUNC_ATTR to process_device().
This commit is contained in:
parent
033b10a80a
commit
5c77c3de65
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2009-04-26 David S. Miller <davem@davemloft.net>
|
||||
|
||||
* util/grub-mkdevicemap.c (make_device_map): Add missing
|
||||
NESTED_FUNC_ATTR to process_device().
|
||||
|
||||
2009-04-25 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
Test command
|
||||
|
|
|
@ -42,9 +42,9 @@ make_device_map (const char *device_map, int floppy_disks)
|
|||
int num_fd = 0;
|
||||
FILE *fp;
|
||||
|
||||
auto int process_device (const char *name, int is_floppy);
|
||||
auto int NESTED_FUNC_ATTR process_device (const char *name, int is_floppy);
|
||||
|
||||
int process_device (const char *name, int is_floppy)
|
||||
int NESTED_FUNC_ATTR process_device (const char *name, int is_floppy)
|
||||
{
|
||||
grub_util_emit_devicemap_entry (fp, (char *) name,
|
||||
is_floppy, &num_fd, &num_hd);
|
||||
|
|
Loading…
Reference in a new issue