From ebaaf49b0229a4d3e6bc048f1329b37273192e19 Mon Sep 17 00:00:00 2001 From: robertmh Date: Wed, 19 Nov 2008 12:05:20 +0000 Subject: [PATCH] 2008-11-19 Robert Millan * loader/i386/pc/linux.c (grub_rescue_cmd_initrd): Fix a typo. --- ChangeLog | 4 ++++ loader/i386/pc/linux.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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)