Revision: 2141
http://svn.sv.gnu.org/viewvc/?view=rev&root=grub&revision=2141
Author: davem
Date: 2009-04-26 08:44:36 +0000 (Sun, 26 Apr 2009)
Log Message:
-----------
* util/grub-mkdevicemap.c (make_device_map): Add missing
NESTED_FUNC_ATTR to process_device().
Modified Paths:
--------------
trunk/grub2/ChangeLog
trunk/grub2/util/grub-mkdevicemap.c
Modified: trunk/grub2/ChangeLog
===================================================================
--- trunk/grub2/ChangeLog 2009-04-25 12:29:08 UTC (rev 2140)
+++ trunk/grub2/ChangeLog 2009-04-26 08:44:36 UTC (rev 2141)
@@ -1,3 +1,8 @@
+2009-04-26 David S. Miller <[email protected]>
+
+ * util/grub-mkdevicemap.c (make_device_map): Add missing
+ NESTED_FUNC_ATTR to process_device().
+
2009-04-25 Vladimir Serbinenko <[email protected]>
Test command
Modified: trunk/grub2/util/grub-mkdevicemap.c
===================================================================
--- trunk/grub2/util/grub-mkdevicemap.c 2009-04-25 12:29:08 UTC (rev 2140)
+++ trunk/grub2/util/grub-mkdevicemap.c 2009-04-26 08:44:36 UTC (rev 2141)
@@ -42,9 +42,9 @@
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);