From: robertmh Date: Wed, 19 Nov 2008 12:05:20 +0000 (+0000) Subject: 2008-11-19 Robert Millan X-Git-Tag: 1.98~1202 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ebaaf49b0229a4d3e6bc048f1329b37273192e19;p=thirdparty%2Fgrub.git 2008-11-19 Robert Millan * loader/i386/pc/linux.c (grub_rescue_cmd_initrd): Fix a typo. --- diff --git a/ChangeLog b/ChangeLog index c3bbea91d..d5b035292 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-11-19 Robert Millan + + * loader/i386/pc/linux.c (grub_rescue_cmd_initrd): Fix a typo. + 2008-11-14 Robert Millan * fs/cpio.c (grub_cpio_open): Compare `name' and `fn' by hand in diff --git a/loader/i386/pc/linux.c b/loader/i386/pc/linux.c index cd6ea3f0a..d34b5d721 100644 --- a/loader/i386/pc/linux.c +++ b/loader/i386/pc/linux.c @@ -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)