[2667] 2009-10-28 Felix Zielcke <[email protected]>

Felix Zielcke <[email protected]> Wed, 28 Oct 2009 18:24:12 +0000
Newsgroups gmane.comp.boot-loaders.grub.cvs
Message-ID <[email protected]>
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  <[email protected]>

	* 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  <[email protected]>
+
+	* commands/acpi.c (grub_cmd_acpi): Fix the out of memory error
+	strings.
+
 2009-10-26  Robert Millan  <[email protected]>
 
 	* 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;