commit-grub
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[2667] 2009-10-28 Felix Zielcke <address@hidden>


From: Felix Zielcke
Subject: [2667] 2009-10-28 Felix Zielcke <address@hidden>
Date: Wed, 28 Oct 2009 18:24:12 +0000

Revision: 2667
          http://svn.sv.gnu.org/viewvc/?view=rev&root=grub&revision=2667
Author:   fzielcke
Date:     2009-10-28 18:24:10 +0000 (Wed, 28 Oct 2009)
Log Message:
-----------
2009-10-28  Felix Zielcke  <address@hidden>

        * commands/acpi.c (grub_cmd_acpi): Fix the out of memory error
        strings.

Modified Paths:
--------------
    trunk/grub2/ChangeLog
    trunk/grub2/commands/acpi.c

Modified: trunk/grub2/ChangeLog
===================================================================
--- trunk/grub2/ChangeLog       2009-10-26 20:04:43 UTC (rev 2666)
+++ trunk/grub2/ChangeLog       2009-10-28 18:24:10 UTC (rev 2667)
@@ -1,3 +1,8 @@
+2009-10-28  Felix Zielcke  <address@hidden>
+
+       * commands/acpi.c (grub_cmd_acpi): Fix the out of memory error
+       strings.
+
 2009-10-26  Robert Millan  <address@hidden>
 
        * autogen.sh: Support addition of external modules via `GRUB_CONTRIB'

Modified: trunk/grub2/commands/acpi.c
===================================================================
--- trunk/grub2/commands/acpi.c 2009-10-26 20:04:43 UTC (rev 2666)
+++ trunk/grub2/commands/acpi.c 2009-10-28 18:24:10 UTC (rev 2667)
@@ -552,7 +552,7 @@
                      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_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 @@
            {
              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 @@
            {
              free_tables ();
              return grub_error (GRUB_ERR_OUT_OF_MEMORY,
-                                "Could allocate table structure");
+                                "Couldn't allocate table structure");
            }
 
          table->size = size;





reply via email to

[Prev in Thread] Current Thread [Next in Thread]