2008-11-19 Robert Millan <rmh@aybabtu.com>

* loader/i386/pc/linux.c (grub_rescue_cmd_initrd): Fix a typo.
This commit is contained in:
robertmh 2008-11-19 12:05:20 +00:00
parent 2f2a344257
commit ebaaf49b02
2 changed files with 5 additions and 1 deletions

View file

@ -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

View 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)