]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* util/grub-mkdevicemap.c (make_device_map): Add missing
authordavem <davem@localhost>
Sun, 26 Apr 2009 08:44:36 +0000 (08:44 +0000)
committerdavem <davem@localhost>
Sun, 26 Apr 2009 08:44:36 +0000 (08:44 +0000)
NESTED_FUNC_ATTR to process_device().

ChangeLog
util/grub-mkdevicemap.c

index cb78fdba071c1947857ec1d93f9293e7247df783..e5b3086c5f3e210432b5f9dbc5c9ed66ee6c2b08 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 4f544f878d4f40810006d18bf824c6e9c997dff8..ac8a39059f9cd7a9fb8266fada42b605730f31f0 100644 (file)
@@ -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);