]> git.proxmox.com Git - grub2.git/commitdiff
2009-10-28 Felix Zielcke <fzielcke@z-51.de>
authorfzielcke <fzielcke@localhost>
Wed, 28 Oct 2009 18:24:10 +0000 (18:24 +0000)
committerfzielcke <fzielcke@localhost>
Wed, 28 Oct 2009 18:24:10 +0000 (18:24 +0000)
* commands/acpi.c (grub_cmd_acpi): Fix the out of memory error
strings.

ChangeLog
commands/acpi.c

index 56ff263eddf41d82dd4005da7cb49e6a1f9af61d..1a1be5746ad304457704e8c25c7957ffce4c0d4a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-10-28  Felix Zielcke  <fzielcke@z-51.de>
+
+       * commands/acpi.c (grub_cmd_acpi): Fix the out of memory error
+       strings.
+
 2009-10-26  Robert Millan  <rmh.grub@aybabtu.com>
 
        * autogen.sh: Support addition of external modules via `GRUB_CONTRIB'
index e7cb9e6b4ca877d1f5ec4fc020378512c7627ecd..9cfd8ef106e35bddfc6064b1991101605842f645 100644 (file)
@@ -552,7 +552,7 @@ grub_cmd_acpi (struct grub_extcmd *cmd,
                      grub_free (exclude);
                      grub_free (load_only);
                      return grub_error (GRUB_ERR_OUT_OF_MEMORY,
-                                        "Could allocate table");
+                                        "Couldn't allocate table");
                    }
                  grub_memcpy (table_dsdt, dsdt, dsdt->length);
                }
@@ -579,7 +579,7 @@ grub_cmd_acpi (struct grub_extcmd *cmd,
              grub_free (exclude);
              grub_free (load_only);
              return grub_error (GRUB_ERR_OUT_OF_MEMORY,
-                                "Could allocate table structure");
+                                "Couldn't allocate table structure");
            }
          table->size = curtable->length;
          table->addr = grub_malloc (table->size);
@@ -588,7 +588,7 @@ grub_cmd_acpi (struct grub_extcmd *cmd,
            {
              free_tables ();
              return grub_error (GRUB_ERR_OUT_OF_MEMORY,
-                                "Could allocate table");
+                                "Couldn't allocate table");
            }
          table->next = acpi_tables;
          acpi_tables = table;
@@ -675,7 +675,7 @@ grub_cmd_acpi (struct grub_extcmd *cmd,
            {
              free_tables ();
              return grub_error (GRUB_ERR_OUT_OF_MEMORY,
-                                "Could allocate table structure");
+                                "Couldn't allocate table structure");
            }
 
          table->size = size;