diff --git a/ChangeLog b/ChangeLog index eefa217b1..0309195de 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-02-05 Yoshinori K. Okuji + + * stage2/builtins.c (displaymem_func): Use hex digits to display + for consistency. + 2002-02-04 Jason Thomas From Denis Kitzman : diff --git a/docs/grub-install.8 b/docs/grub-install.8 index 894c1b6c3..ff9ecfd32 100644 --- a/docs/grub-install.8 +++ b/docs/grub-install.8 @@ -1,5 +1,5 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.23. -.TH GRUB-INSTALL "8" "January 2002" "grub-install (GNU GRUB 0.91)" FSF +.TH GRUB-INSTALL "8" "February 2002" "grub-install (GNU GRUB 0.91)" FSF .SH NAME grub-install \- install GRUB on your drive .SH SYNOPSIS diff --git a/docs/grub-md5-crypt.8 b/docs/grub-md5-crypt.8 index 34a0b3b06..0abe60843 100644 --- a/docs/grub-md5-crypt.8 +++ b/docs/grub-md5-crypt.8 @@ -1,5 +1,5 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.23. -.TH GRUB-MD5-CRYPT "8" "January 2002" "grub-md5-crypt (GNU GRUB )" FSF +.TH GRUB-MD5-CRYPT "8" "February 2002" "grub-md5-crypt (GNU GRUB )" FSF .SH NAME grub-md5-crypt \- Encrypt a password in MD5 format .SH SYNOPSIS diff --git a/docs/grub.8 b/docs/grub.8 index 3469f9269..c5be5fc1f 100644 --- a/docs/grub.8 +++ b/docs/grub.8 @@ -1,5 +1,5 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.23. -.TH GRUB "8" "January 2002" "grub (GNU GRUB 0.91)" FSF +.TH GRUB "8" "February 2002" "grub (GNU GRUB 0.91)" FSF .SH NAME grub \- the grub shell .SH SYNOPSIS diff --git a/docs/mbchk.1 b/docs/mbchk.1 index 016f87b5d..6e40ffd67 100644 --- a/docs/mbchk.1 +++ b/docs/mbchk.1 @@ -1,5 +1,5 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.23. -.TH MBCHK "1" "January 2002" "mbchk (GNU GRUB 0.91)" FSF +.TH MBCHK "1" "February 2002" "mbchk (GNU GRUB 0.91)" FSF .SH NAME mbchk \- check the format of a Multiboot kernel .SH SYNOPSIS diff --git a/stage2/builtins.c b/stage2/builtins.c index bf3c0d32f..d3abf309d 100644 --- a/stage2/builtins.c +++ b/stage2/builtins.c @@ -949,7 +949,7 @@ displaymem_func (char *arg, int flags) else str = "Reserved"; grub_printf (" %s: Base Address: 0x%x X 4GB + 0x%x,\n" - " Length: %u X 4GB + %u bytes\n", + " Length: 0x%x X 4GB + 0x%x bytes\n", str, (unsigned long) (map->BaseAddr >> 32), (unsigned long) (map->BaseAddr & 0xFFFFFFFF),