Revision: 1918
http://svn.sv.gnu.org/viewvc/?view=rev&root=grub&revision=1918
Author: robertmh
Date: 2008-11-19 12:05:20 +0000 (Wed, 19 Nov 2008)
Log Message:
-----------
2008-11-19 Robert Millan <[EMAIL PROTECTED]>
* loader/i386/pc/linux.c (grub_rescue_cmd_initrd): Fix a typo.
Modified Paths:
--------------
trunk/grub2/ChangeLog
trunk/grub2/loader/i386/pc/linux.c
Modified: trunk/grub2/ChangeLog
===================================================================
--- trunk/grub2/ChangeLog 2008-11-14 20:18:07 UTC (rev 1917)
+++ trunk/grub2/ChangeLog 2008-11-19 12:05:20 UTC (rev 1918)
@@ -1,3 +1,7 @@
+2008-11-19 Robert Millan <[EMAIL PROTECTED]>
+
+ * loader/i386/pc/linux.c (grub_rescue_cmd_initrd): Fix a typo.
+
2008-11-14 Robert Millan <[EMAIL PROTECTED]>
* fs/cpio.c (grub_cpio_open): Compare `name' and `fn' by hand in
Modified: trunk/grub2/loader/i386/pc/linux.c
===================================================================
--- trunk/grub2/loader/i386/pc/linux.c 2008-11-14 20:18:07 UTC (rev 1917)
+++ trunk/grub2/loader/i386/pc/linux.c 2008-11-19 12:05:20 UTC (rev 1918)
@@ -347,7 +347,7 @@
size = grub_file_size (file);
- /* Put the initrd as high as possible, 4Ki aligned. */
+ /* Put the initrd as high as possible, 4KiB aligned. */
addr = (addr_max - size) & ~0xFFF;
if (addr < addr_min)