]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2008-11-19 Robert Millan <rmh@aybabtu.com>
authorrobertmh <robertmh@localhost>
Wed, 19 Nov 2008 12:05:20 +0000 (12:05 +0000)
committerrobertmh <robertmh@localhost>
Wed, 19 Nov 2008 12:05:20 +0000 (12:05 +0000)
        * loader/i386/pc/linux.c (grub_rescue_cmd_initrd): Fix a typo.

ChangeLog
loader/i386/pc/linux.c

index c3bbea91d3f54abb5055cd8e40d76e12122ff816..d5b03529227ea2d14f2ffe5e85d171234c15d722 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-11-19  Robert Millan  <rmh@aybabtu.com>
+
+       * loader/i386/pc/linux.c (grub_rescue_cmd_initrd): Fix a typo.
+
 2008-11-14  Robert Millan  <rmh@aybabtu.com>
 
        * fs/cpio.c (grub_cpio_open): Compare `name' and `fn' by hand in
index cd6ea3f0add34e58e1b3264d1c4d216bef5637a4..d34b5d721639a766a5a160d58cf76469920d2c5f 100644 (file)
@@ -347,7 +347,7 @@ grub_rescue_cmd_initrd (int argc, char *argv[])
 
   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)